:root {
    --primary-color: #0073ae;
    --secondary-color: #f7f7f7;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --max-width: 1100px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: 0.3s;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
}

nav .nav-list {
    display: flex;
}

nav .nav-list li {
    margin-left: 20px;
}

nav .nav-list li a {
    font-weight: 600;
    color: var(--text-color);
}

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

/* Mobile Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: var(--primary-color);
}

/* Hero */
.hero {
    padding: 80px 0;
    text-align: center;
    background: #eee;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.card {
    text-align: center;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 8px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100px;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}

/* Members */
.members-grid {
    margin-bottom: 40px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.members-grid .member {
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.members-grid .member img {
    width: 100%;
    border-radius: 50%;
    max-width: 120px;
    margin-bottom: 15px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.members-grid .member:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.members-grid h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.members-grid p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 2px;
}

.members-grid .company {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

/* Board */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.board-member {
    text-align: center;
}

.board-member img {
    width: 100%;
    border-radius: 50%;
    max-width: 150px;
    margin-bottom: 10px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.board-member h4 {
    margin-bottom: 5px;
}

.board-member p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.linkedin-link {
    display: inline-block;
    font-size: 0.8rem;
    color: #0077b5;
    font-weight: 600;
}

.linkedin-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: var(--white);
    text-decoration: underline;
}

footer .footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.footer-info {
    margin-top: 20px;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    header .container {
        padding: 0 20px;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    nav .nav-list {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        position: absolute;
        top: 100%;
        left: -100%;
        opacity: 0;
        transition: all 0.5s ease;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    nav .nav-list.active {
        left: 0;
        opacity: 1;
    }

    nav .nav-list li {
        margin: 15px 0;
        text-align: center;
        width: 100%;
    }

    nav .nav-list li a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }

    .board-grid {
        grid-template-columns: 1fr;
    }
}
#what-is-jci {
    margin-top:40px;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}