/* ===================================
   OVER ONS PAGINA - VERKEERSSCHOOL KASSEM
   Vernieuwde styling met volle breedte foto
   =================================== */

/* === OVER ONS HERO === */
.over-hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Achtergrond foto over volle breedte */
.over-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/2toDrive.png') no-repeat center 20%;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

/* Optionele overlay voor betere leesbaarheid tekst */
.over-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.over-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 6rem 2rem;
}

.over-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: var(--primary-blue);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 147, 200, 0.25);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.over-hero-content .hero-badge svg {
    color: var(--white);
}

/* De basis styling voor de gehele regel */
.over-hero-content h1 {
    font-size: 3.5rem; /* Jouw gewenste grootte */
    font-weight: 800;  /* Jouw gewenste dikte */
    color: var(--primary-blue-dark); /* De blauwe kleur voor 'Alphen aan den Rijn' */
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Alleen de kleur aanpassen voor de span, de rest wordt geërfd van de h1 */
.over-hero-content h1 span.white-parts {
    color: #ffffff; /* Maakt deze woorden wit */
    font-size: inherit; /* Garandeert dat de grootte 100% gelijk blijft */
    font-weight: inherit; /* Garandeert dat de dikte 100% gelijk blijft */
}

.over-subtitle {
    font-size: 1.5rem;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

/* === WIE WIJ ZIJN SECTION === */
.section-wie-wij-zijn {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.wie-wij-zijn-content {
    max-width: 1000px;
    margin: 0 auto;
}

.wie-wij-zijn-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-statement {
    font-size: 1.625rem;
    line-height: 1.6;
    color: var(--gray-900);
    text-align: center;
    padding: 3.5rem;
    background: var(--white);
    border-radius: 32px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 147, 200, 0.15);
    box-shadow: 0 15px 40px rgba(0, 147, 200, 0.08);
    position: relative;
}

.intro-statement::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(0, 147, 200, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.intro-statement strong {
    color: var(--primary-blue);
    font-weight: var(--font-weight-extrabold);
    display: block;
    margin-top: 1rem;
}

.text-emphasized {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.wie-wij-zijn-text > p {
    font-size: 1.1875rem;
    line-height: 1.9;
    color: var(--gray-700);
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 3.5rem;
    border-radius: 32px;
    color: var(--white);
    margin-top: 3rem;
    box-shadow: 0 25px 50px rgba(0, 147, 200, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.highlight-box h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 1rem;
    position: relative;
}

.highlight-box p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.98);
    position: relative;
}

/* === UITBLINKEN SECTION === */
.section-uitblinken {
    padding: 6rem 0;
    background: #f0f7ff;
}

.uitblinken-intro {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 3rem;
    font-weight: var(--font-weight-semibold);
}

.uitblinken-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.uitblinken-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.uitblinken-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.uitblinken-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 147, 200, 0.12);
    border-color: var(--primary-blue-light);
}

.uitblinken-card:hover::before {
    transform: scaleX(1);
}

.uitblinken-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0f2fe;
    border-radius: 18px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.uitblinken-card:hover .uitblinken-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
}

.uitblinken-card h3 {
    font-size: 1.1875rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    line-height: 1.5;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uitblinken-conclusie {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--primary-blue);
}

.uitblinken-conclusie p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--gray-800);
}

.uitblinken-conclusie strong {
    color: var(--primary-blue);
    font-weight: var(--font-weight-extrabold);
}

/* === ONZE STIJL SECTION === */
.section-onze-stijl {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
}

.stijl-content {
    max-width: 1000px;
    margin: 0 auto;
}

.stijl-intro {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 2.5rem;
    font-weight: var(--font-weight-semibold);
}

.stijl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stijl-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e0f2fe;
    box-shadow: 0 4px 12px rgba(0, 147, 200, 0.05);
}

.stijl-item:hover {
    background: #f0f9ff;
    transform: translateX(8px);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(0, 147, 200, 0.12);
}

.stijl-item svg {
    flex-shrink: 0;
    color: var(--primary-blue);
    background: rgba(0, 147, 200, 0.1);
    padding: 6px;
    border-radius: 8px;
}

.stijl-item span {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
}

.stijl-daarom {
    text-align: center;
    margin: 4rem 0 2.5rem;
    padding: 2.5rem;
    background: var(--primary-blue-dark);
    border-radius: 20px;
    color: var(--white);
}

.stijl-daarom p {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin: 0;
}

.stijl-werkwijze {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.werkwijze-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 5px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.werkwijze-item:hover {
    box-shadow: 0 4px 16px rgba(0, 147, 200, 0.1);
    transform: translateY(-2px);
}

.werkwijze-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 147, 200, 0.3);
}

.werkwijze-item p {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin: 0;
    font-weight: var(--font-weight-medium);
}

.stijl-closing {
    max-width: 900px;
    margin: 0 auto;
}

.stijl-closing > p {
    font-size: 1.1875rem;
    line-height: 1.9;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 2.5rem;
}

.stijl-quote {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 147, 200, 0.25);
    position: relative;
    overflow: hidden;
}

.stijl-quote::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.stijl-quote p {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
    position: relative;
}

.stijl-quote strong {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* === TEAM SECTION === */
.section-team {
    padding: 6rem 0;
    background: #f0f7ff;
}

.team-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-content p {
    font-size: 1.1875rem;
    line-height: 1.9;
    color: var(--gray-700);
    text-align: center;
}

.team-content p strong {
    color: var(--primary-blue);
    font-weight: var(--font-weight-extrabold);
}

.locatie-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 147, 200, 0.25);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.locatie-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.locatie-highlight svg {
    color: var(--white);
    flex-shrink: 0;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.locatie-highlight div {
    display: flex;
    flex-direction: column;
    position: relative;
}

.locatie-highlight strong {
    font-size: 2rem;
    color: var(--white);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.2;
}

.locatie-highlight span {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-medium);
}

.team-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.team-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid #e0f2fe;
    transition: all 0.3s ease;
    text-align: center;
}

.team-feature:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 147, 200, 0.12);
    transform: translateY(-4px);
}

.team-feature svg {
    color: var(--primary-blue);
    flex-shrink: 0;
    background: rgba(0, 147, 200, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.team-feature span {
    font-size: 1.0625rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    line-height: 1.5;
}

/* === LESGEBIED SECTION === */
.section-lesgebied {
    padding: 6rem 0;
    background: var(--white);
}

.lesgebied-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lesgebied-content > p {
    font-size: 1.1875rem;
    line-height: 1.9;
    color: var(--gray-700);
    text-align: center;
}

.locaties-startgebied {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    text-align: center;
    border-radius: 24px;
    font-size: 1.375rem;
    font-weight: var(--font-weight-extrabold);
    box-shadow: 0 20px 40px rgba(0, 147, 200, 0.25);
    line-height: 1.6;
}

.locaties-examengebied {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    text-align: center;
    border-radius: 20px;
    font-size: 1.125rem;
    color: var(--gray-800);
    line-height: 1.8;
    border: 2px solid var(--gray-100);
}

.lesgebied-uitleg {
    margin-top: 2rem;
}

.lesgebied-uitleg > p {
    text-align: center;
    font-size: 1.1875rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
}

.lesgebied-highlight {
    background: #f0f9ff;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px dashed var(--primary-blue);
}

.lesgebied-highlight h3 {
    font-size: 1.625rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.lesgebied-highlight p {
    font-size: 1.1875rem;
    line-height: 1.9;
    color: var(--gray-800);
    text-align: center;
}

.lesgebied-resultaat {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 3rem;
    border-radius: 24px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 147, 200, 0.25);
    position: relative;
    overflow: hidden;
}

.lesgebied-resultaat::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.lesgebied-resultaat h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.lesgebied-resultaat p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.98);
    text-align: center;
    position: relative;
}

/* === AANBOD SECTION === */
.section-aanbod {
    padding: 6rem 0;
    background: #f8fafc;
}

.aanbod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.aanbod-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aanbod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 147, 200, 0.15);
    border-color: var(--primary-blue-light);
}

.aanbod-card:not(.featured):hover {
    background: #f0f9ff;
}

.aanbod-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.aanbod-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.aanbod-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 147, 200, 0.1) 0%, rgba(0, 168, 224, 0.15) 100%);
    border-radius: 20px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.aanbod-card:hover .aanbod-icon {
    transform: scale(1.1) rotate(5deg);
}

.aanbod-card.featured .aanbod-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.aanbod-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.5;
    position: relative;
}

.aanbod-card.featured h3 {
    color: var(--white);
    font-size: 1.5rem;
}

.aanbod-card p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-600);
    position: relative;
}

.aanbod-card.featured p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
}

/* === CONTACT CTA SECTION === */
.section-contact-cta {
    padding: 6rem 0;
    background: var(--white);
}

.contact-cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: linear-gradient(135deg, #0077b6 0%, #004d7a 100%);
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 147, 200, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-cta-card::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact-cta-card::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
}

.contact-cta-content h2 {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-phone svg {
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-phone a {
    font-size: 2.25rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.contact-phone a:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-cta-content > p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-cta-buttons .btn-primary,
.contact-cta-buttons .btn-secondary {
    padding: 1.25rem 2.5rem;
    font-size: 1.0625rem;
}

.contact-cta-buttons .btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.contact-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue-dark);
    transform: translateY(-3px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .uitblinken-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .aanbod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hero aanpassingen voor mobiel */
    .over-hero {
        min-height: 400px;
    }
    
    .over-hero-content {
        padding: 4rem 1.5rem;
    }
    
    .over-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .over-subtitle {
        font-size: 1.125rem;
    }
    
    /* Sections aanpassingen */
    .intro-statement {
        font-size: 1.25rem;
        padding: 2rem;
    }
    
    .intro-statement strong {
        font-size: 1.375rem;
    }
    
    .wie-wij-zijn-text > p,
    .text-emphasized {
        font-size: 1.0625rem;
    }
    
    .highlight-box {
        padding: 2rem;
    }
    
    .highlight-box h3 {
        font-size: 1.375rem;
    }
    
    .highlight-box p {
        font-size: 1.0625rem;
    }
    
    /* Grids naar 1 kolom */
    .uitblinken-grid,
    .stijl-grid,
    .stijl-werkwijze,
    .aanbod-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-phone {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-phone a {
        font-size: 1.75rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
    }
    
    .locatie-highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .locatie-highlight strong {
        font-size: 1.5rem;
    }
    
    .team-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .over-hero {
        min-height: 350px;
    }
    
    .over-hero-content {
        padding: 3rem 1rem;
    }
    
    .over-hero-content h1 {
        font-size: 1.875rem;
    }
    
    .over-subtitle {
        font-size: 1rem;
    }
    
    .intro-statement {
        font-size: 1.0625rem;
        padding: 1.5rem;
    }
    
    .intro-statement strong {
        font-size: 1.1875rem;
    }
    
    .contact-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .contact-phone a {
        font-size: 1.5rem;
    }
    
    .uitblinken-card,
    .aanbod-card {
        padding: 1.75rem;
    }
    
    .highlight-box,
    .stijl-quote,
    .lesgebied-resultaat {
        padding: 1.75rem;
    }
}


@media (max-width: 768px) {
    /* Verberg de badge op mobiel */
    .over-hero-content .hero-badge {
        display: none;
    }

    /* Optioneel: verminder de padding bovenin nu de badge weg is */
    .over-hero-content {
        padding-top: 2rem;
    }
}