    .team-section {
        padding: 4rem 1rem;
        background-color: #f8f9fa;
    }

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

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #2d3748;
        font-weight: 700;
        text-align: center;
    }

    .section-description {
        max-width: 800px;
        margin: 0 auto 3rem;
        color: #4a5568;
        line-height: 1.6;
        text-align: center;
    }

    .team-hierarchy {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .ceo {
        margin-bottom: 0;
        max-width: 300px;
        width: 100%;
        transition: transform 0.3s ease;
    }

    .other-officials {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        width: 100%;
        padding: 0 1rem;
    }

    .official,
    .ceo {
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border: 2px solid #ca8a04;
        padding: 1.5rem;
        border-radius: 15px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .official:hover,
    .ceo:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        border-color: #ca8a04;
    }

    .official img,
    .ceo img {
        width: 150px;
        height: 150px;
        border-radius: 0;
        margin: 0 auto 1rem;
        object-fit: cover;
        border: 4px solid #333333;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: block;
    }

    h3 {
        margin: 0.5rem 0;
        color: #ca8a04;
    }

    p {
        font-weight: bold;
        color: #666;
    }

    .social-links {
        margin-top: 0.5rem;
    }

    .social-links a {
        color: #666;
        margin: 0 0.5rem;
        text-decoration: none;
        font-size: 1.2rem;
    }

    .social-links a:hover {
        color: #333;
    }

    .member-card {
        cursor: pointer;
        position: relative;
        padding-bottom: 2rem;
        text-align: center;
    }

    .dropdown-arrow {
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        transition: transform 0.3s ease;
        color: #666;
    }

    .member-details {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background-color: #fff;
        border-top: 1px solid #eee;
        margin-top: 1rem;
        width: 100%;
    }

    .member-details.active {
        max-height: 500px; /* Adjust based on content */
        transition: max-height 0.5s ease-in;
    }

    .bio {
        padding: 1.5rem;
        margin: 0;
        font-weight: normal;
        line-height: 1.6;
        color: #666;
        text-align: left;
        font-size: 0.95rem;
        white-space: pre-line;
        overflow-wrap: break-word;
    }

    .member-card.active .dropdown-arrow {
        transform: translateX(-50%) rotate(180deg);
    }

    @media (max-width: 768px) {
        .other-officials {
            grid-template-columns: 1fr;
            padding: 0;
        }

        .ceo {
            max-width: 100%;
            padding: 1rem;
        }

        .bio {
            padding: 1rem;
            font-size: 0.9rem;
        }
    }
