    /* Reset and base styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --wine: #A51313;
        --blue: #204387;
        --light-gray: #f7f7f7;
        --text-gray: #333;
        --border: #ccc;
        --font-main: 'Segoe UI', sans-serif;
    }

    body {
        font-family: var(--font-main);
        line-height: 1.6;
        color: var(--text-gray);
        background-color: white;
    }

    /* Header */
    /* Header layout */
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 30px;
        background-color: var(--blue);
        color: white;
        position: relative;
        flex-wrap: wrap;
    }

    nav {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    nav a {
        color: white;
        text-decoration: none;
        font-weight: 500;
    }

    .header-cta {
        background-color: var(--wine);
        color: white;
        border: none;
        padding: 8px 18px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: bold;
    }

    .header-cta:hover {
        background-color: darkred;
    }

    .menu-toggle {
        display: none;
        font-size: 2rem;
        cursor: pointer;
        color: white;
    }


    .logo {
        max-width: 80px;
    }


    nav a:hover {
        text-decoration: underline;
    }

    header button {
        background-color: var(--wine);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 7px;
        cursor: pointer;
        font-weight: bold;
    }

    header button:hover {
        background-color: darkred;
    }


    /* Hero Section */
    .hero {
        background: linear-gradient(to right, rgba(213, 213, 252, 0.484), white);
        padding: 80px 20px;
        text-align: center;
        min-height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-top: 20px;
        margin-bottom: 10px;
        color: var(--blue);
    }

    .hero h2 {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 20px;
        color: var(--text-gray);
    }

    /* CTA Buttons */
    .cta {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .button1, .button2 {
        padding: 10px 25px;
        border-radius: 7px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1rem;
    }

    .button1 {
        background-color: var(--wine);
        color: white;
        border: none;
    }

    .button2 {
        background-color: white;
        color: var(--blue);
        border: 2px solid var(--blue);
    }

    .button1:hover {
        background-color: darkred;
    }



    .button2:hover {
        background-color: var(--blue);
        color: white;
    }

    /* Executives Section */
    .executives {
        padding: 50px 20px;
        background-color: var(--light-gray);
    }


    .executives h3, .executives h4 {
        text-align: center;
        margin-bottom: 10px;
    }

    h3{
        font-size: 30px ;
        text-align: center;
    }

    h4{
        font-size: 18px ;
        text-align: center;
    }

    .execs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 5fr)); /* 3 equal columns */
    gap: 20px;
    margin: 50px auto;
    max-width: 1200px; /* max container width */
    padding: 0 15px;
    box-sizing: border-box;
    }

    .cards {
        height:115vh;
        background-color: white;
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

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

    .cards img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        max-height: 400px; /* Optional: limit max height */
        border-radius: 10px;
        margin-bottom: 15px;
        object-fit: contain; /* Crop to fill if needed */
        /* Placeholder background */
    }

    .cards h5 {
        margin-bottom: 5px;
        color: var(--blue);
    }

    .cards span {
        background-color: var(--wine);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
    }

    .cards p {
        margin-top: 10px;
        font-size: 14px;
        color: var(--text-gray);
    }

    .electoral{
        
        padding: 50px 20px;
        background: linear-gradient(to bottom, #f4f6fb, #e4ebf7);


    }

    /* Stay Connected */
    .stayConnected {
        text-align: center;
        padding: 40px 20px;
        background-color: white;
    }

    .stayConnected h6 {
        font-size: 1.5rem;
        color: var(--blue);
        margin-bottom: 10px;
    }

    .stayConnected p {
        margin-bottom: 20px;
    }

    .stayConnected button {
        padding: 10px 20px;
        margin: 0 10px;
        border-radius: 6px;
        border: 2px solid var(--blue);
        background-color: white;
        color: var(--blue);
        font-weight: bold;
        cursor: pointer;
    }

    .stayConnected button:hover {
        background-color: var(--blue);
        color: white;
    }

    /* Footer */
    footer {
        background-color: var(--blue);
        color: white;
        text-align: center;
        padding: 20px;
        font-size: 0.9rem;
    }
    @media (min-width: 1024px) {
    .execs {
        grid-template-columns: repeat(3, 1fr); /* exactly 3 equal columns */
    }
    }

    @media (max-width: 768px) {
        nav {
            display: none;
            flex-direction: column;
            background-color: var(--blue);
            position: absolute;
            top: 70px;
            right: 0;
            width: 100%;
            padding: 20px;
            z-index: 1000;
        }

        nav.show {
            display: flex;
        }

        .menu-toggle {
            display: block;
        }

        .hero {
            padding: 60px 15px;
        }

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

        .hero h2 {
            font-size: 1rem;
            max-width: 90%;
        }

        .button1, .button2 {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

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

        .cards p {
        font-size: 14px;
    }
    .cards{
    height:105vh
}  
    }   

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 1.5rem;
        }

        .hero h2 {
            font-size: 0.95rem;
        }

         .cards p {
        font-size: 12px;
    }

.cards{
    height:102vh
}   
    }   


    @media (max-width:350px){
        .card p{
            font-size: 11px;
        }
    }

   