@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    display: flex;
    white-space: nowrap;
    gap: 16px;
    min-width: 200%;
    animation: scroll-left 30s linear infinite; /* Adjust speed as needed */
}

.team-card {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 220px; /* Ensures proper scrolling */
}

.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid #FF6600;
}

.faq-card {
    border: 2px solid;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}
.faq-card:hover {
    transform: scale(1.03);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}
.faq-header {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.05);
}
.faq-content {
    display: none;
    padding: 16px;
    background-color: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}