:root {
    --primary-color: #008AE6;
    --light-primary-color: #E6F4FF;
    --secondary-color: #005999;
    --light-secondary-color: #CCE7FF;
    --tertiary-color: #B3D9FF;
    --dark-color: #31333A;
    --light-color: #FFFFFF;
    --grey-color: #BBC7D4;
    --light-dark-color: #727272;
    --light-grey-color: #f5f5f5;
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Inter', sans-serif;
}

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

body {
    font-family: var(--body-font);
    overflow-x: hidden;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--light-grey-color);
}

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

/* Header & Navigation Styles */
.nav-container {
    padding: 10px 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.main-logo img {
    width: 130px;
}

/* Desktop Menu */
.nav-list {
    display: block;
}

.nav-list ul {
    display: flex;
    gap: 35px;
}

.nav-list ul li {
    list-style: none;
}

.nav-list ul li a {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-color);
    transition: color 0.3s;
}

.nav-list ul li a:hover,
.nav-list ul li a.active {
    color: var(--primary-color);
}

/* Hamburger Button */
.hamburger {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #31333A;
    transition: all 0.3s ease;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--light-primary-color) 0%, var(--light-grey-color) 100%);
    padding: 80px 0;
}

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-dark-color);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat .label {
    font-size: 0.9rem;
    color: var(--light-dark-color);
    font-weight: 600;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--light-dark-color);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background-color: white;
}

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

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.story-text p {
    color: var(--light-dark-color);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.milestone {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--light-grey-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.milestone .year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.milestone .event {
    font-size: 0.9rem;
    color: var(--light-dark-color);
    font-weight: 600;
}

.story-image img {
    max-width: 500px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background-color: var(--light-grey-color);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--light-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
}

.mv-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.mv-card p {
    color: var(--light-dark-color);
    line-height: 1.6;
}

/* Leadership Team */
.leadership-team {
    padding: 80px 0;
    background-color: white;
}

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

.leader-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--light-grey-color);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.leader-image {
    height: 250px;
    overflow: hidden;
    background: var(--light-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    padding: 30px;
}

.leader-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.leader-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.leader-bio {
    color: var(--light-dark-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.leader-contact {
    border-top: 1px solid var(--light-grey-color);
    padding-top: 15px;
}

.email {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Board Section */
.board-section {
    padding: 80px 0;
    background-color: var(--light-grey-color);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.board-member {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.board-member h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.board-member p {
    color: var(--light-dark-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    background-color: white;
}

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

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--light-grey-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--light-dark-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-dark-color);
    font-size: 0.9rem;
}

.service-card li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Membership Impact */
.membership-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

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

.impact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.impact-text > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.impact-stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    min-width: 100px;
}

.impact-stat .label {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn:hover {
    background: var(--light-grey-color);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.impact-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Footer */


/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .impact-stat {
        justify-content: center;
        text-align: left;
    }
    
    
}

@media (max-width: 768px) {
    .nav-align {
        padding: 10px 0;
    }

    .hamburger {
        display: flex;
        position: relative;
        left: 0;
    }

    .nav-list {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        z-index: 100;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-list.open {
        display: block;
    }

    .nav-list ul {
        display: block;
        width: 100%;
    }

    .nav-list ul li {
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 20px;
    }

    .nav-list ul li a {
        display: block;
        width: 100%;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .milestones {
        grid-template-columns: 1fr;
    }
    
    .leaders-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .board-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-stats .number {
        font-size: 2rem;
    }
    
    .impact-stat {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .impact-stat .number {
        min-width: auto;
    }
}