: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;
}

/* 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;
}

/* Hero Section */
.officers-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 {
    display: block;
    font-size: 0.9rem;
    color: var(--light-dark-color);
    font-weight: 600;
    line-height: 1.3;
}

.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);
}

/* Executive Grid */
.executive-grid {
    padding: 80px 0;
    background-color: white;
}

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

/* Featured Officer Card */
.officer-card.featured {
    background: linear-gradient(135deg, var(--light-primary-color) 0%, white 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--light-primary-color);
    position: relative;
}

.officer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.officer-badge i {
    font-size: 0.7rem;
}

.officer-image {
    position: relative;
}

.officer-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.social-links {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.officer-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.officer-tenure {
    color: var(--light-dark-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.officer-bio p {
    color: var(--light-dark-color);
    margin-bottom: 25px;
    line-height: 1.7;
}

.officer-expertise h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.tag {
    background: var(--light-primary-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.officer-expertise ul {
    list-style: none;
    padding-left: 0;
}

.officer-expertise li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-dark-color);
}

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

.officer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-dark-color);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-color);
    width: 16px;
}

/* Officers Row */
.officers-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.officer-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;
    position: relative;
}

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

.officer-card .officer-badge {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
}

.officer-card .officer-image {
    margin-bottom: 20px;
}

.officer-card .officer-image img {
    width: 100%;
    border-radius: 8px;
}

/* Executive Staff */
.executive-staff {
    padding: 80px 0;
    background-color: var(--light-grey-color);
}

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

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

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

.staff-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--light-primary-color);
}

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

.staff-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

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

.staff-bio {
    color: var(--light-dark-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.staff-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--light-dark-color);
}

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

.structure-chart {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.org-position {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.org-position.president {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
}

.org-position.staff {
    border-color: var(--light-dark-color);
    background: var(--light-grey-color);
}

.position-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.position-name {
    font-size: 0.9rem;
    color: var(--light-dark-color);
}

.org-position.president .position-name {
    color: white;
}

.org-connector {
    width: 2px;
    height: 40px;
    background: var(--primary-color);
    margin: 0 auto 40px;
    position: relative;
}

.org-connector:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary-color);
}

.staff-level .org-position {
    min-width: 180px;
}

/* Contact Executives */
.contact-executives {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-primary-color) 0%, var(--light-grey-color) 100%);
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-content > p {
    color: var(--light-dark-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-option i {
    width: 50px;
    height: 50px;
    background: var(--light-primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-option h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-option p {
    color: var(--light-dark-color);
    margin: 0;
    font-size: 0.9rem;
}

.contact-action {
    text-align: center;
}

.contact-action .btn {
    margin-bottom: 15px;
}

.contact-action p {
    color: var(--light-dark-color);
    font-size: 0.9rem;
}

/* Footer */

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .officer-card.featured {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .officers-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .contact-option {
        justify-content: center;
    }
    
    
}

@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);
    }
    
    .officers-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;
    }
    
    .org-level {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px;
    }
    
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .officer-card.featured {
        padding: 25px;
    }
    
    .officer-card {
        padding: 20px;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-option {
        flex-direction: column;
        text-align: center;
    }
}