.faq-section-classname-container {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.faq-section-classname-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-section-classname-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
}

.faq-video-container iframe,
.faq-video-container .youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.faq-section-classname-accordion .accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    box-shadow: none;
    padding: 15px;
    font-size: 1rem;
}

.faq-section-classname-accordion .accordion-button:not(.collapsed) {
    color: #4f46e5;
    background-color: #f0f4ff;
}

.faq-section-classname-accordion .accordion-body {
    padding: 15px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.faq-section-classname-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.faq-section-classname-accordion .accordion-item:last-child {
    border-bottom: none;
}

/* Responsive adjustments using breakpoints similar to hero-images.css */

/* Large Screens (>= 1481px) */
@media (min-width: 1481px) {
    .faq-section-classname-container .col-lg-3 {
        width: 25%;
        /* Ensure 4 rows */
    }
}

/* Desktop Standard (1100px - 1480px) */
@media (min-width: 1100px) and (max-width: 1480px) {
    .faq-section-classname-card {
        margin-bottom: 25px;
    }
}

/* Tablet (768px - 1099px) */
@media (max-width: 1099px) {
    .faq-section-classname-container .col-lg-3 {
        width: 50%;
        /* 2 per row on tablets */
    }
}

/* Mobile (<= 767px) */
@media (max-width: 767px) {
    .faq-section-classname-container .col-lg-3 {
        width: 100%;
        /* 1 per row on mobile */
    }
}