* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.main-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    text-align: center;
    color: #475569;
    font-style: italic;
    margin-bottom: 3rem;
    font-weight: 500;
}

.content-section {
    margin-bottom: 4rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 64, 175, 0.05);
    position: relative;
    overflow: hidden;
}

.section-image {
    margin: -2.5rem -2.5rem 2rem -2.5rem;
    height: 250px;
    overflow: hidden;
}

.about-hero-image,
.about-section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-section:hover .about-hero-image,
.content-section:hover .about-section-image {
    transform: scale(1.02);
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    border-bottom: 3px solid #f97316;
    padding-bottom: 0.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.content-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section li {
    color: #374151;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* About Page Specific Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 6px solid #f97316;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: 700;
}

.value-card p {
    color: #475569;
    margin-bottom: 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #1e40af;
}

.feature-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: 700;
}

.feature-item p {
    color: #475569;
    margin-bottom: 0;
}

/* Contact Information */
.contact-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: #334155;
}

.contact-info a {
    color: #f97316;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ea580c;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f97316;
}

.footer-section ul {
    list-style: none;
    margin-left: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        padding: 1rem 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .main-content h1 {
        font-size: 2.5rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 0.75rem 15px;
    }
    
    .header-content {
        gap: 6px;
    }
    
    .logo {
        width: 36px;
        height: 36px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .main-content h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .value-card,
    .feature-item,
    .contact-info {
        padding: 2rem;
    }
}