/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header and Navigation */
header {
    background-color: #0c4a6e;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    padding: 1.2rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #e0f2fe;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(to right, #0c4a6e, #0284c7, #0ea5e9);
    color: #ffffff;
    padding: 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    width: 100%;
    padding: 6rem 0;
}

.hero-content {
    text-align: left;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
    font-style: italic;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #0c4a6e;
    margin-bottom: 2rem;
    font-weight: 400;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #374151;
}

/* Objectives Section */
.objectives {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0c4a6e;
    margin-bottom: 3rem;
    font-weight: 400;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.objective-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #0ea5e9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.card-number {
    font-size: 3rem;
    color: #0ea5e9;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.objective-card h3 {
    color: #0c4a6e;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.objective-card p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
}

/* Impact Section */
.impact {
    padding: 5rem 0;
    background-color: #ffffff;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-content img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.impact-text h2 {
    font-size: 2.5rem;
    color: #0c4a6e;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.impact-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 100%);
    color: #ffffff;
}

.section-title-light {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 400;
}

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

.value-item {
    text-align: center;
}

.value-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #e0f2fe;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info h3 {
    color: #f1f5f9;
    margin-bottom: 0.8rem;
    font-weight: 400;
    font-size: 1.3rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 400;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #bae6fd;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
}

/* Privacy Policy Page */
.privacy-page {
    padding: 4rem 0;
    background-color: #ffffff;
}

.privacy-page h1 {
    color: #0c4a6e;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.privacy-content {
    max-width: 900px;
}

.privacy-content h2 {
    color: #0c4a6e;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.privacy-content a {
    color: #0284c7;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .impact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title,
    .section-title-light {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
