:root {
    --default-font: "Roboto", system-ui, -apple-system, sans-serif;
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #666666d3;
    --accent-color: #724e2c;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --primary-brown: #724e2c;
    --primary-brown-dark: #523823;
    --primary-brown-light: #9b6c25;
    --accent-gold: #d4a574;
    --bg-light: #fff8f0;
    --text-dark: #2d2d2d;
    --text-muted: #666666;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --shadow-md: 0 4px 20px rgba(114, 78, 44, 0.12);
    --shadow-lg: 0 10px 40px rgba(114, 78, 44, 0.15);
    --radius-md: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--default-font);
    color: var(--default-color);
    background-color: var(--background-color);
}


/* Values Section */
.values-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary-brown);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title h3 {
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
}

.value-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-brown);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-width: 6px;
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.mission-vision-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-brown);
    transition: all 0.3s ease;
    height: 100%;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-vision-card i {
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.mission-vision-card h4 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission-vision-card p {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.team-member-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-member .qualification {
    color: var(--primary-brown);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member .role {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brown);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-brown);
    color: white;
    transform: translateY(-3px);
}

    /* Footer */
    .footer {
      background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
      color: #e0e0e0;
      padding: 3rem 0 1.5rem;
    }

    .footer h4 {
      color: white;
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      font-weight: 600;
    }

    .footer p {
      color: #b0b0b0;
      margin-bottom: 0.5rem;
    }

    .footer a {
      color: #b0b0b0;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer a:hover {
      color: var(--accent-gold);
    }

    .footer .social-links a {
      background: rgba(212, 165, 116, 0.1);
      color: var(--accent-gold);
    }

    .footer .social-links a:hover {
      background: var(--accent-gold);
      color: #2d2d2d;
    }

    .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.5rem;
      margin-top: 2rem;
      text-align: center;
      color: #888;
    }

    @media (max-width: 768px) {
      .page-header {
        padding: 100px 0 60px;
      }

      .story-section, .values-section, .mission-vision-section, .team-section {
        padding: 3rem 0;
      }

      .story-image {
        height: 300px;
        margin-bottom: 2rem;
      }
    }