.faq-container {
    font-family: 'Roboto', sans-serif;
    max-width: 800px;
    margin: 0;
    padding: 40px 0
}

.faq-title {
    text-align: left;
    color: #000;
    font-weight: 400;
    margin-bottom: 40px;
    font-family: 'Exo', sans-serif
}

.dropdown-block {
    font-family: 'Roboto', sans-serif;
    max-width: 100%;
    width: 100%;
    padding: 0;
    box-sizing: border-box
}

.dropdown-block * {
    box-sizing: border-box
}

.dropdown-block details {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin: 15px 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08)
}

.dropdown-block details:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(39, 136, 232, 0.1)
}

.dropdown-block details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2788e8, transparent);
    opacity: 0.3
}

.dropdown-block summary {
    padding: 25px 30px;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    margin: 0
}

.dropdown-block summary:hover {
    background: #f8f9fa
}

.dropdown-block summary::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid #2788e8;
    border-bottom: 2px solid #2788e8;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.dropdown-block details[open] summary::after {
    transform: rotate(225deg)
}

.dropdown-block ul {
    padding: 0 30px 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    margin: 0
}

.dropdown-block .content {
    padding: 0 30px 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    margin: 0
}

.dropdown-block details[open] ul,
.dropdown-block details[open] .content {
    max-height: 1000px;
    opacity: 1
}

.dropdown-block li {
    list-style: none;
    padding: 5px 0;
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.4s ease forwards
}

.dropdown-block .content {
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.4s ease forwards
}

.dropdown-block .content p {
    margin: 0 0 15px 0;
}

.dropdown-block .content p:last-child {
    margin-bottom: 0;
}

.dropdown-block .content strong {
    color: #2c3e50;
    font-weight: 600;
}

.dropdown-block li:nth-child(1) { animation-delay: 0.1s }
.dropdown-block li:nth-child(2) { animation-delay: 0.2s }
.dropdown-block li:nth-child(3) { animation-delay: 0.3s }
.dropdown-block li:nth-child(4) { animation-delay: 0.4s }
.dropdown-block li:nth-child(5) { animation-delay: 0.5s }

.dropdown-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #2788e8;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(39, 136, 232, 0.2)
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}
/* ========================================== */
/* Black Friday Banner + Countdown             */
/* ========================================== */

.bf-banner {
    text-align: center;
    margin: 0;
    padding: 0;
    background: #000;
}

.bf-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.bf-countdown-wrapper {
    background-color: #000;
    color: #fff;
    padding: 1rem 0;
}

.bf-countdown-title {
    font-weight: 600;
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
}

.bf-countdown {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2786e8;
    margin-top: 0.3rem;
}
/* ========================================== */
/* Topdeals / Productkaarten                  */
/* ========================================== */

.bf-topdeals {
    background: #fff;
    padding: 3rem 1rem;
    text-align: center;
}

.bf-topdeals-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
}

.bf-dealcards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    max-width: 1100px;
    margin: auto;
}

.dealcard {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1rem;
    max-width: 250px;
    flex: 1;
    position: relative;
    transition: .25s;
    text-align: center;
}

.dealcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.dealcard-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #2786E8;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.dealcard-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.dealcard-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

.dealcard-sub {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
}

.dealcard-price {
    margin: 0.3rem 0;
    font-size: 1rem;
    color: #2786E8;
}

.dealcard-price s {
    color: #777;
    margin-right: 0.3rem;
}

/* ========================================== */
/* Carousel / Slider - 4 Slides Version */
/* ========================================== */
.bf-carousel-section {
    background: #111;
    color: #fff;
    padding: 2rem 0;
    overflow: hidden;
}

.bf-carousel {
    display: flex;
    width: 400%; /* Updated for 4 slides */
    animation: bf-swap 20s infinite; /* Increased duration */
}

@keyframes bf-swap {
    0%, 22% { 
        transform: translateX(0); 
    }
    25%, 47% { 
        transform: translateX(-25%); 
    }
    50%, 72% { 
        transform: translateX(-50%); 
    }
    75%, 97% { 
        transform: translateX(-75%); 
    }
}

.bf-slide {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2rem;
    min-height: 400px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.bf-slide-text {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    z-index: 2;
}

.bf-slide-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.bf-slide-text p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 425px; /* Constrains text width to prevent awkward breaks */
}

.bf-slide-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.bf-slide-image {
    max-width: 85%;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.bf-blueangle {
    position: absolute;
    right: -15%;
    top: -10%;
    width: 50%;
    height: 120%;
    background: #2786E8;
    transform: skew(-25deg);
    z-index: 1;
    border-radius: 12px 0 0 12px;
}

        /* Mobile improvements */
        @media (max-width: 768px) {
            .bf-carousel {
                width: 100%;
                animation: none;
                display: block;
            }
            
            .bf-slide {
                flex-direction: column;
                padding: 2rem 1.5rem;
                min-height: auto;
                text-align: center;
            }

            .bf-slide-text {
                padding-right: 0;
                margin-bottom: 2rem;
                max-width: 100%;
            }

            .bf-slide-text h2 {
                font-size: 1.75rem;
            }

            .bf-slide-text p {
                max-width: 100%;
                font-size: 0.95rem;
            }

            .bf-slide-image-wrapper {
                width: 100%;
                min-width: auto;
                margin-top: 1rem;
            }
            
            .bf-slide-image {
                max-width: 70%;
            }

            .bf-blueangle {
                right: -20%;
                top: 50%;
                transform: translateY(-50%) skew(-25deg);
                width: 80%;
                height: 100%;
            }
        }

        /* Extra small screens */
        @media (max-width: 480px) {
            .bf-slide {
                padding: 1.5rem 1rem;
            }

            .bf-slide-text h2 {
                font-size: 1.5rem;
            }

            .bf-slide-image {
                max-width: 80%;
            }
        }
/* ========================================== */
/* USP / Waarom kiezen voor HearPlanet        */
/* ========================================== */

.bf-usps {
    background: #fff;
    padding: 3rem 1rem;
    text-align: center;
}

.bf-usps-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
}

.bf-usp-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    max-width: 1100px;
    margin: auto;
}

.bf-usp-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem;
    flex: 1 1 300px;
    max-width: 320px;
    text-align: center;
    transition: .25s;
}

.bf-usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.bf-usp-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.bf-usp-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.bf-usp-card-text {
    font-size: 0.95rem;
    color: #444;
    margin: 0;
}
.dealcard-button {
    background: #2786E8;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: background 0.25s ease;
}

.dealcard-button:hover {
    background: #1f6ec0;
}
