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

:root {
    --primary: #1a1a1a;
    --bg-color: #F5F1E8;
    --accent: #E8B5E8;
    /* matching the pink accent from index */
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-color);
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background-color: var(--bg-color);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-size: 56px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 32px;
    line-height: 1.1;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.content-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

/* Mission Section */
.mission-section {
    padding: 120px 0;
    background: var(--accent);
    /* Pink accent from index */
}

.mission-header {
    text-align: center;
    margin-bottom: 80px;
}

.mission-header .section-title {
    font-size: 48px;
}

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

.value-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-color);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-icon i {
    font-size: 24px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background-color: var(--bg-color);
}

.team-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.team-card:hover img {
    transform: scale(1.02);
}

.team-card h3 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-card p {
    font-size: 16px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {

    .story-section,
    .mission-section,
    .team-section {
        padding: 80px 0;
    }

    .content-image {
        height: 400px;
    }

    .team-card img {
        height: 350px;
    }
}