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

body {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header and Navigation */
header {
    background-color: #6b21a8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    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.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: #ffffff;
    padding: 6rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background-color: #fafafa;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.mission-content img {
    width: 50%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mission-text {
    width: 50%;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: #6b21a8;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-text p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.goals h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #6b21a8;
    margin-bottom: 3rem;
    font-weight: 700;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

.goal-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.goal-item img:hover {
    transform: scale(1.05);
}

.goal-item h3 {
    font-size: 1.8rem;
    color: #0891b2;
    font-weight: 700;
}

/* Footer */
footer {
    background-color: #18181b;
    color: #d4d4d8;
    padding: 3rem 0 1.5rem;
}

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

.footer-info h3 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.footer-links a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
}

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

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

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

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

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

.privacy-page h1 {
    color: #6b21a8;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.privacy-content h2 {
    color: #6b21a8;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

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

.privacy-content a {
    color: #0891b2;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .mission-content {
        flex-direction: column;
    }
    
    .mission-content img,
    .mission-text {
        width: 100%;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .nav-links {
        gap: 1.2rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
}
