body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
}

body.landing-page {
 background: linear-gradient(180deg, #8db8f5 0%, #f4f6f8 280px);
}
body.landing-page .card,
body.landing-page .card h1,
body.landing-page .card h2,
body.landing-page .card h3,
body.landing-page .card p,
body.landing-page .card li {
    font-family: "Segoe UI", Arial, sans-serif;
}
.container {
    max-width: 900px;
    margin: auto;
}
.title-highlight {
    color: #007bff;
    font-size: inherit !important;
    font-weight: inherit;
    line-height: inherit;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.55;
    color: #111827;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.btn-primary {
    background: #007bff;
    color: #ffffff;
}

.btn-success {
    background: #28a745;
    color: #ffffff;
}
.btn:hover {
    text-decoration: none;
}


.progress-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}

.step.active {
    background: #007bff;
    color: white;
}

.step.done {
    background: #28a745;
    color: white;
}
/* === EXAM SPECIFIEK === */

.answers label {
    display: block;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 6px;
    background: #f1f1f1;
    cursor: pointer;
}

.answers label:hover {
    background: #e0e0e0;
}

.answers input {
    margin-right: 10px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress {
    font-weight: bold;
}

.timer {
    color: red;
    font-weight: bold;
}
.answers label {
    display: block;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    background: #f1f1f1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

/* hover effect */
.answers label:hover {
    background: #e0e0e0;
}

/* radio knop verbergen */
.answers input {
    display: none;
}

/* ✅ GESELECTEERD ANTWOORD */
.answers input:checked + span {
    display: block;
    background: #007bff;
    color: white;
    padding: 12px;
    border-radius: 6px;
}
.answers label span {
    display: block;
}
.card b {
    font-size: 16px;
}

.card span {
    font-size: 14px;
}
.exam-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.exam-card h4 {
    margin-top: 0;
}

.exam-card p {
    color: #555;
    margin-bottom: 15px;
}

/* badge */
.badge {
    display: inline-block;
    padding: 5px 10px;
    background: #28a745;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 10px;
}

.exam-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.exam-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.price small {
    font-size: 14px;
    color: #777;
}

.exam-card .btn {
    width: 100%;
}
/* ✅ HOOVER EFFECT */
.exam-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ✅ NETTERE TITELS */
.exam-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* ✅ BESCHRIJVING */
.exam-card p {
    font-size: 14px;
    color: #555;
}

/* ✅ PRIJS MEER “PREMIUM” */
.price {
    font-size: 22px;
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
}

/* ✅ BTN mooi strak */
.exam-card .btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
}
.badge-container {
    min-height: 20px;
    margin-bottom: 10px;
}

.badge-premium {
    display: inline-block;
    background: orange;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.login-container {
    max-width: 400px;
    margin: 60px auto;
}

.btn-secondary {
    background: #f1f1f1;
    color: #333;
    border: 1px solid #ccc;
}

.btn-secondary:hover {
    background: #e0e0e0;
    color: #111;
}

.btn + .btn {
    margin-left: 10px;
}
/* === LANDING PAGE === */

.landing-hero {
    text-align: center;
    padding: 35px 25px;
    border-top: 2px solid #2f8ee5;
}

.landing-hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-text {
    font-size: 18px;
    color: #444;
    max-width: 650px;
    margin: 0 auto 20px auto;
    line-height: 1.5;
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
    color: #333;
    font-size: 14px;
}

.cta-btn {
    font-size: 17px;
    padding: 14px 24px;
}

.landing-cta {
    text-align: center;
    border: 2px solid #28a745;
}

.account-box {
    text-align: center;
}

/* ruimte tussen knoppen */
.account-box .btn {
    margin: 5px;
}

/* mobiele verbetering */
@media (max-width: 700px) {
    .exam-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero h1 {
        font-size: 26px;
    }

    .hero-text {
        font-size: 16px;
    }
}

.upsell-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.price-note {
    margin-top: 15px;
    font-size: 15px;
    color: #444;
}

.price-note strong {
    color: #111;
}
.offer-card {
    border: 2px solid #ff9800;
    background: #fffaf0;
}

.badge-offer {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.offer-card .price {
    color: #111;
}


.offer-card .btn {
    width: auto;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar a,
.header a,
nav a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.navbar a:hover,
.header a:hover,
nav a:hover {
    color: white;
    text-decoration: underline;
}

.page-content {
    padding-top: 25px;
}
/* =====================================================
   RESPONSIVE BASIS
   ===================================================== */

* {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Zorg dat content niet tegen de schermrand plakt */
.container {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Cards blijven netjes op mobiel */
.card {
    max-width: 100%;
}

/* Formulieren mobielvriendelijk */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    max-width: 100%;
}

/* =====================================================
   RESPONSIVE DASHBOARD / EXAM GRID
   ===================================================== */

@media (max-width: 700px) {

    .exam-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .exam-card {
        width: 100%;
    }

    .exam-card .btn {
        width: 100%;
        text-align: center;
    }
}

/* =====================================================
   RESPONSIVE KNOPPEN
   ===================================================== */

@media (max-width: 700px) {

    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .btn + .btn {
        margin-left: 0;
    }

    .account-box .btn,
    .upsell-buttons .btn {
        width: 100%;
    }
}

/* =====================================================
   RESPONSIVE EXAMENPAGINA
   ===================================================== */

@media (max-width: 700px) {

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .question-step {
        padding: 12px;
    }

    .progress {
        font-size: 15px;
    }

    .timer {
        font-size: 16px;
    }

    .answers label {
        padding: 12px;
        font-size: 15px;
    }

    .vraag .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .progress-bar {
        gap: 4px;
    }

    .step {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 13px;
    }
}

/* =====================================================
   RESPONSIVE LANDING PAGE
   ===================================================== */

@media (max-width: 700px) {
    .card.landing-cta {
        padding: 18px 14px;
        margin: 18px 0;
    }

    .card.landing-cta h2 {
        font-size: 23px;
        line-height: 1.22;
        margin-top: 0;
        margin-bottom: 10px;
        font-weight: 800;
    }

    .card.landing-cta p {
        font-size: 16px;
        line-height: 1.35;
        margin-top: 0;
        margin-bottom: 14px;
        font-weight: 400;
    }

    .card.landing-cta .btn {
        padding: 12px 16px;
        margin-bottom: 0;
    }

    .landing-hero {
        padding: 25px 15px;
    }

    .landing-hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 16px;
    }

    .trust-row {
        flex-direction: column;
        gap: 8px;
    }

    .price-note {
        font-size: 14px;
    }
}

/* =====================================================
   RESPONSIVE TRUST BLOK
   ===================================================== */

@media (max-width: 700px) {

    .trust-points {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   RESPONSIVE LOGIN / REGISTER
   ===================================================== */

@media (max-width: 700px) {

    .login-container {
        max-width: 100%;
        margin: 30px auto;
    }

    .login-container .card {
        padding: 18px;
    }
}

/* =====================================================
   RESPONSIVE RESULTAAT / REVIEW
   ===================================================== */

@media (max-width: 700px) {

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 19px;
    }

    .card {
        padding: 16px;
    }

    .upsell-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* =====================================================
   RESPONSIVE AANBIEDINGSKAART
   ===================================================== */

@media (max-width: 700px) {

    .offer-card {
        text-align: left;
    }

    .offer-card .btn {
        width: 100%;
    }

    .badge-offer {
        margin-bottom: 8px;
    }
}
/* =====================================================
   RESPONSIVE HEADER
   ===================================================== */

.site-header a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.site-header a:last-child {
    margin-right: 0;
}

.site-header a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .site-header-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .site-header-nav a {
        margin-right: 10px;
        margin-bottom: 5px;
    }
}


/* =====================================================
   LANDING PAGE: DESKTOP / MOBIEL VOORDELEN WISSELEN
   ===================================================== */

/* Standaard desktop */
.mobile-benefits {
    display: none;
}

.desktop-benefits {
    display: grid;
}

/* Mobiel */
@media (max-width: 700px) {

    .desktop-benefits {
        display: none;
    }

    .mobile-benefits {
        display: block;
        text-align: center;
    }

    .mobile-benefits h3 {
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 12px;
    }

    .mobile-benefits p {
        color: #555;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .mobile-benefits ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
        text-align: center;
    }

    .mobile-benefits li {
        margin-bottom: 8px;
    }
}

.answer-img {
    max-width: 100%;
    max-height: 180px;
    margin-top: 10px;
    border-radius: 6px;
    display: block;
}
/* =========================
   Flashcards
========================= */

.flashcard-wrapper {
    max-width: 800px;
    margin: 30px auto;
}

.flashcard-progress {
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.flashcard {
    min-height: 320px;
    padding: 30px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flashcard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.16);
}

.flashcard-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}

.flashcard-question,
.flashcard-answer {
    width: 100%;
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
}

.flashcard-answer {
    display: none;
}

.flashcard.flipped .flashcard-question {
    display: none;
}

.flashcard.flipped .flashcard-answer {
    display: block;
}

.flashcard-image {
    display: block;
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    margin: 0 auto 20px auto;
}

.flashcard-explanation {
    margin: 20px auto 0 auto;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    max-width: 650px;
    font-size: 17px;
    line-height: 1.5;
    color: #444;
    text-align: center;
}

.flashcard-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.flashcard-hint {
    margin-top: 18px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 700px) {
    .flashcard {
        min-height: 260px;
        padding: 22px;
    }

    .flashcard-question,
    .flashcard-answer {
        font-size: 20px;
    }

    .flashcard-controls {
        flex-direction: column;
    }

    .flashcard-controls .btn {
        width: 100%;
        text-align: center;
    }
}
/* =========================
   Flashcard overzicht pagina
========================= */

.flashcard-set-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 25px;
}


.flashcard-set-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flashcard-set-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}


.flashcard-set-card h3 {
    margin-top: 0;
}

.flashcard-set-card p {
    line-height: 1.5;
}

.flashcard-set-price {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
}

.flashcard-set-badge {
    display: inline-block;
    background: #facc15;
    color: #111827;
    font-size: 13px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

@media (max-width: 700px) {
    .flashcard-set-grid {
        grid-template-columns: 1fr;
    }

    .flashcard-set-card {
        padding: 20px;
    }
}

.flashcard-cta{
    text-align: center;
    border: 2px solid #17a6d6;
}
.flashcard-cta h2 {
    margin-top: 0;
}
/* =========================
   Prijzen pagina
========================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 25px 0 35px 0;
}

.pricing-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.pricing-card h3 {
    margin-top: 0;
}

.pricing-price {
    font-size: 28px;
    font-weight: bold;
    margin: 18px 0 8px 0;
    color: #16a34a;
}

.pricing-card-highlight {
    border: 2px solid #16a34a;
}

@media (max-width: 700px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 22px;
    }

    .pricing-price {
        font-size: 24px;
    }
}
/* =========================
   Flashcard prijzen overzicht
========================= */

.flashcard-price-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.flashcard-price-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.flashcard-price-info strong {
    font-size: 17px;
}

.flashcard-price-info span {
    color: #374151;
    line-height: 1.4;
}

.flashcard-price-info small {
    color: #6b7280;
}

.flashcard-price-amount {
    min-width: 90px;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    color: #16a34a;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .flashcard-price-row {
        flex-direction: column;
        gap: 8px;
    }

    .flashcard-price-amount {
        text-align: left;
        font-size: 22px;
    }
}
.flashcard-price-overview {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.flashcard-price-overview h3,
.flashcard-price-overview p {
    text-align: left;
}

.flashcard-price-list {
    text-align: left;
}
.pricing-section-wrap {
    max-width: 1088px;
    margin: 0 auto;
    padding: 0 20px;
}

.flashcard-price-overview {
    width: 100%;
    margin-top: 25px;
}

.flashcard-price-overview h3,
.flashcard-price-overview p {
    text-align: left;
}
.pricing-page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
/* =========================
   Top trust bar
========================= */

.top-trust-bar {
    background: #183B65;
    color: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.top-trust-inner {
    max-width: 1240px;
    width: calc(100% - 48px);
    margin: 0 auto;
    padding: 7px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.top-trust-item {
    white-space: nowrap;
}

.top-trust-item strong {
    font-weight: 800;
}

@media (max-width: 700px) {
    .top-trust-inner {
        width: calc(100% - 16px);
        padding: 6px 0;
        gap: 0;
        font-size: 12px;
        justify-content: center;
    }

    .top-trust-count {
        display: none;
    }

    .top-trust-main {
        display: block;
        width: 100%;
        text-align: center;
        white-space: normal;
        font-weight: 600;
    }
}
/* =========================
   Header / navigatie
========================= */

.site-header {
    background: #92c6fd;
    color: #ffffff;
    padding: 9px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.site-header-title {
    font-size: 20px;
    white-space: nowrap;
}

.site-header-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
}

.site-header-nav a {
    color: #183B65;
    text-decoration: none;
    font-weight: 500;
}

/* Mobiel compact menu */
@media only screen and (max-width: 700px) {

    .site-header {
        padding: 8px 8px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .site-header-title {
        font-size: 18px;
        line-height: 1.2;
    }

    .site-header-nav {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 4px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .site-header-nav a {
        font-size: 11px;
        padding: 4px 3px;
        line-height: 1.2;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        white-space: nowrap;
        flex-shrink: 0;
    }
}
/* =========================
   Demo flashcard homepage
========================= */

.demo-flashcard-section {
    text-align: center;
    font-family: "Segoe UI", Arial, sans-serif;
}
.demo-flashcard-section > p {
    font-size: 18px;
    line-height: 1.55;
    margin: 0 auto 22px auto;
    color: #111827;
    max-width: 900px;
}

.demo-flashcard {
    max-width: 520px;
    min-height: 230px;
    margin: 25px auto 0 auto;
    padding: 28px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid #0ea5e9;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-flashcard:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.demo-flashcard-front,
.demo-flashcard-back {
    width: 100%;
}

.demo-flashcard-back {
    display: none;
}

.demo-flashcard.flipped .demo-flashcard-front {
    display: none;
}

.demo-flashcard.flipped .demo-flashcard-back {
    display: block;
}

.demo-flashcard-label {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.demo-flashcard h3 {
    margin: 0 0 12px 0;
    font-size: 24px;
}

.demo-flashcard p {
    margin-bottom: 0;
}

.demo-flashcard-hint {
    margin-top: 18px;
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 700px) {
    .demo-flashcard-section {
        padding: 18px 12px;
    }

    .demo-flashcard-section h2 {
        font-size: 25px;
        line-height: 1.18;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .demo-flashcard-section > p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 14px;
    }

    .demo-flashcard {
        min-height: 145px;
        padding: 16px;
        margin-top: 14px;
        border-radius: 14px;
    }

    .demo-flashcard-label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .demo-flashcard h3 {
        font-size: 21px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .demo-flashcard p {
        font-size: 14px;
        line-height: 1.35;
    }

    .demo-flashcard-hint {
        margin-top: 10px;
        font-size: 13px;
    }

    .demo-flashcard-section .btn {
        margin-top: 12px;
    }
}
/* =========================
   Dashboard examenkaarten
========================= */

.exam-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.exam-card {
    background: #ffffff !important;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exam-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.exam-card h3 {
    margin-top: 0;
}

.exam-card .price {
    font-size: 18px;
    font-weight: bold;
    margin: 18px 0;
}

.exam-card form {
    margin-top: 18px;
}

.exam-card .btn,
.exam-card button {
    width: 100%;
    text-align: center;
}

.badge-premium {
    display: inline-block;
    background: #f59e0b;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
}

@media (max-width: 700px) {
    .exam-grid {
        grid-template-columns: 1fr;
    }

    .exam-card {
        padding: 20px;
    }
}
/* Dashboard cards extra compact */

.exam-card {
    padding: 18px 22px;
}

.exam-card .badge-premium {
    margin-bottom: 8px;
}

.exam-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.exam-card p {
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.3;
}

.exam-card p[style*="color:green"] {
    margin-bottom: 14px;
}

.exam-card form {
    margin-top: 8px;
}
.flashcard-code-box {
    padding: 14px 22px !important;
    margin-top: 12px;
}

.flashcard-code-box h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.flashcard-code-box p {
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.3;
}

.flashcard-code-value {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 6px 0 12px 0;
}
.flashcard-disclaimer {
    margin-top: 24px;
    padding: 14px 18px;
    background: #f8fafc;
    border-left: 4px solid #0ea5e9;
    border-radius: 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.45;
}
/* =========================
   FAQ homepage
========================= */

.faq-section {
    margin-top: 30px;
}

.faq-section h2 {
    margin-top: 0;
    margin-bottom: 18px;
}

.faq-item {
    border-top: 1px solid #e5e7eb;
    padding: 14px 0;
}

.faq-item:last-child {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: #1f2937;
    list-style: none;
    position: relative;
    padding-right: 28px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px;
    line-height: 1;
    color: #007bff;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 12px 0 0 0;
    color: #4b5563;
    line-height: 1.5;
}
.flashcard-more-info-link {
    display: inline-block;
    margin: 1px 0 8px 0;
    font-size: 0.95rem;
    text-decoration: underline;
}
.flashcard-info-card h2 {
    margin-top: 0;
}

.flashcard-info-card h3 {
    margin-top: 22px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.flashcard-info-card p,
.flashcard-info-card li {
    font-size: 1rem;
    line-height: 1.5;
}

.flashcard-info-card ul {
    margin-top: 8px;
    padding-left: 20px;
}
.flashcard-info-page {
    max-width: 900px;
    margin: 0 auto;
}

.flashcard-info-card {
    padding: 24px;
}

.flashcard-info-card h2 {
    margin-top: 0;
}

.flashcard-info-card h3 {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.flashcard-info-card p,
.flashcard-info-card li {
    line-height: 1.55;
}

.flashcard-info-card ul {
    padding-left: 20px;
}

.flashcard-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.flashcard-actions form {
    margin: 0;
}

.flashcard-actions .btn {
    display: inline-block;
}
@media (max-width: 600px) {
    .flashcard-info-page {
        padding: 0 12px;
    }

    .flashcard-info-card {
        padding: 16px;
        border-radius: 12px;
    }

    .flashcard-info-card h2 {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    .flashcard-info-card h3 {
        font-size: 1.05rem;
        margin-top: 20px;
    }

    .flashcard-info-card p,
    .flashcard-info-card li {
        font-size: 0.95rem;
    }

    .flashcard-info-card ul {
        padding-left: 18px;
    }

    .flashcard-actions {
        display: block;
    }

    .flashcard-actions form,
    .flashcard-actions a {
        width: 100%;
        margin-bottom: 10px;
    }

    .flashcard-actions button,
    .flashcard-actions .btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}
.flashcard-topic-groups {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 12px;
}

.flashcard-topic-group h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    line-height: 1.3;
}
.flashcard-topic-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.flashcard-topic-group {
    background: #f7f8fa;
    border: 1px solid #edf0f3;
    border-radius: 14px;
    padding: 14px;
}

.flashcard-topic-group-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.flashcard-topic-group-header h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
}

.flashcard-topic-group-header span {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: #555;
    background: #ffffff;
    border-radius: 999px;
    padding: 4px 8px;
}

.flashcard-topic-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flashcard-topic-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-top: 1px solid #e7eaee;
}

.flashcard-topic-row:first-child {
    border-top: 0;
}

.flashcard-topic-name {
    font-size: 0.92rem;
    line-height: 1.25;
}

.flashcard-topic-count {
    min-width: 28px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: #ffffff;
    border-radius: 999px;
    padding: 3px 7px;
}
@media (max-width: 600px) {
    .flashcard-topic-groups {
        gap: 16px;
    }

    .flashcard-topic-group h4 {
        font-size: 0.98rem;
    }

    .flashcard-topic-tags {
        gap: 6px;
    }

    .flashcard-topic-tag {
        font-size: 0.85rem;
        padding: 6px 9px;
    }
}
.flashcard-overlap-summary {
    margin: 12px 0 18px 0;
}

.flashcard-overlap-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: #f2f4f7;
    border-radius: 12px;
    padding: 12px 14px;
}

.flashcard-overlap-card span {
    font-weight: 700;
    white-space: nowrap;
}

.flashcard-overlap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 18px 0;
}

.flashcard-overlap-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f2f4f7;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.9rem;
    line-height: 1.2;
}

.flashcard-overlap-tag small {
    background: #ffffff;
    border-radius: 999px;
    padding: 2px 6px;
    font-size: 0.75rem;
    font-weight: 700;
}
@media (max-width: 600px) {
    .flashcard-overlap-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .flashcard-overlap-tags {
        gap: 6px;
    }

    .flashcard-overlap-tag {
        font-size: 0.85rem;
        padding: 6px 9px;
    }
}
.flashcard-actions-primary {
    margin: 22px 0 26px 0;
}

.flashcard-actions-secondary {
    margin-top: 28px;
}

.flashcard-actions-primary form {
    margin: 0;
}
@media (max-width: 600px) {
    .flashcard-actions-primary button,
    .flashcard-actions-secondary .btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}
@media (max-width: 700px) {
    .flashcard-topic-groups {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .flashcard-topic-group {
        padding: 12px;
    }

    .flashcard-topic-group-header {
        margin-bottom: 8px;
    }

    .flashcard-topic-group-header h4 {
        font-size: 0.98rem;
    }

    .flashcard-topic-row {
        padding: 6px 0;
    }

    .flashcard-topic-name {
        font-size: 0.9rem;
    }
}
@media (max-width: 600px) {
    .nav-home-link {
        display: none;
    }
}
.nav-short {
    display: none;
}

@media (max-width: 600px) {
    .nav-long {
        display: none;
    }

    .nav-short {
        display: inline;
    }
}
.site-header-nav a.active {
    font-weight: 700;
    color: #003b73;
    border-bottom: 2px solid #003b73;
}

.site-header-nav a.active:hover {
    text-decoration: none;
}

@media (max-width: 600px) {
    .site-header-nav a.active {
        border-bottom: 0;
        background: rgba(255, 255, 255, 0.35);
        border-radius: 6px;
    }
}
/* =========================
   Social video cards
========================= */
.social-combined-card {
    padding: 30px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.social-combined-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 24px auto;
}

.social-combined-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #007bff;
    font-size: 15px;
    font-weight: 700;
}

.social-combined-heading h2 {
    margin: 0 0 12px 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f2538;
}

.social-combined-heading p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    color: #111827;
}

.social-channel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.social-channel-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
}

.social-channel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.social-channel-title span {
    font-size: 22px;
    line-height: 1;
}

.social-channel-title h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0f2538;
}

.social-channel-box p {
    margin: 0 0 14px 0;
    font-size: 16px;
    line-height: 1.45;
    color: #475569;
}

.social-channel-name {
    color: #007bff;
    font-size: 17px;
    font-weight: 800;
}

.social-suggestion-text {
    margin: 22px 0 0 0;
    text-align: center;
    color: #007bff;
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 700px) {
    .social-combined-card {
        padding: 18px 14px;
    }

    .social-combined-heading {
        margin-bottom: 18px;
    }

    .social-combined-heading span {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .social-combined-heading h2 {
        font-size: 23px;
        line-height: 1.18;
        margin-bottom: 10px;
    }

    .social-combined-heading p {
        font-size: 15px;
        line-height: 1.4;
    }

    .social-channel-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .social-channel-box {
        padding: 15px 16px;
        border-radius: 15px;
    }

    .social-channel-title h3 {
        font-size: 21px;
    }

    .social-channel-box p {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .social-channel-name {
        font-size: 15px;
    }

    .social-suggestion-text {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.35;
    }
}

.small-price-note {
    margin-top: 8px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #007bff;
}
/* =========================
   Betaalvertrouwen footer
========================= */

.payment-trust {
    margin: 30px auto 12px auto;
    text-align: center;
    color: #475569;
    font-size: 14px;
}

.payment-trust p {
    margin: 0 0 10px 0;
    font-weight: 600;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.payment-logos img {
    height: 45px;
    width: auto;
    display: block;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@media (max-width: 700px) {
    .payment-trust {
        margin-top: 24px;
        font-size: 13px;
    }

    .payment-logos img {
        height: 24px;
        padding: 5px 8px;
    }
}
/* =========================
   Homepage hero met mockup - compacte versie
========================= */

.homepage-hero-card {
    padding: 38px 44px;
    overflow: hidden;
}

.homepage-hero-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
}

.homepage-hero-text {
    text-align: left;
}

.homepage-hero-text h1 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.title-highlight {
    color: #007bff;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.hero-intro {
    font-size: 18px;
    line-height: 1.55;
    margin: 0 0 22px 0;
    color: #111827;
    max-width: 560px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin: 18px 0;
}

.hero-benefits span {
    font-size: 15px;
    color: #111827;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    line-height: 1.35;
}

.hero-price-note {
    font-size: 16px;
    font-weight: 800;
    color: #007bff;
    margin: 22px 0;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
}

.hero-buttons .btn {
    display: inline-flex;
    width: auto;
    min-width: 0;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    padding: 12px 18px;
}

.homepage-hero-image img {
    width: 100%;
    max-width: 680px;
    height: auto;
    display: block;
    margin-left: -10px;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.16));
}
.what-we-offer-section {
    margin: 30px 0;
    padding: 30px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.what-we-offer-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 26px auto;
}

.what-we-offer-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #007bff;
    font-size: 15px;
    font-weight: 700;
}

.what-we-offer-heading h2 {
    margin: 0 0 12px 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f2538;
}

.what-we-offer-heading p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    color: #111827;
}

.what-we-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.what-we-offer-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
    text-align: left;
}

.what-we-offer-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.what-we-offer-card h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0f2538;
}

.what-we-offer-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
}

@media (max-width: 1000px) {
    .what-we-offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .what-we-offer-section {
        padding: 18px 12px;
        margin: 22px 0;
    }

    .what-we-offer-heading {
        margin-bottom: 18px;
    }

    .what-we-offer-heading span {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .what-we-offer-heading h2 {
        font-size: 25px;
        line-height: 1.18;
        margin-bottom: 10px;
    }

    .what-we-offer-heading p {
        font-size: 16px;
        line-height: 1.4;
    }

    .what-we-offer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .what-we-offer-card {
        padding: 15px 16px;
        border-radius: 15px;
    }

    .what-we-offer-title-row {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }

    .what-we-offer-icon {
        font-size: 22px;
        line-height: 1;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .what-we-offer-card h3 {
        margin: 0;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: -0.01em;
        color: #0f2538;
    }

    .what-we-offer-card p {
        font-size: 15px;
        line-height: 1.4;
    }
}
.choice-help-section {
    margin: 30px 0;
    padding: 30px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.choice-help-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 26px auto;
}

.choice-help-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #007bff;
    font-size: 15px;
    font-weight: 700;
}

.choice-help-heading h2 {
    margin: 0 0 12px 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f2538;
}

.choice-help-heading p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    color: #111827;
}

.choice-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.choice-help-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
}

.choice-help-icon {
    font-size: 30px;
    margin-bottom: 12px;
}

.choice-help-card h3 {
    margin: 0 0 12px 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0f2538;
}

.choice-help-card p {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
}

.choice-help-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.choice-help-card li {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 1.35;
    color: #0f2538;
}

.choice-help-card .btn {
    width: 100%;
}

@media (max-width: 700px) {
    .choice-help-section {
        padding: 18px 12px;
        margin: 22px 0;
    }

    .choice-help-heading {
        margin-bottom: 18px;
    }

    .choice-help-heading span {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .choice-help-heading h2 {
        font-size: 25px;
        line-height: 1.18;
        margin-bottom: 10px;
    }

    .choice-help-heading p {
        font-size: 16px;
        line-height: 1.4;
    }

    .choice-help-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .choice-help-card {
        padding: 16px;
        border-radius: 15px;
    }

    .choice-help-title-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .choice-help-icon {
        font-size: 26px;
        line-height: 1;
        flex-shrink: 0;
    }

    .choice-help-card h3 {
        margin: 0;
        font-size: 24px;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: -0.01em;
        color: #0f2538;
    }

    .choice-help-card p {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .choice-help-card ul {
        margin-bottom: 14px;
    }

    .choice-help-card li {
        font-size: 14px;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .choice-help-card .btn {
        padding: 11px 16px;
    }
}
/* Mobiel */
@media (max-width: 900px) {

    .homepage-hero-card {
        padding: 24px 14px;
    }

    .homepage-hero-content {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .homepage-hero-text {
        text-align: center;
    }

    .homepage-hero-text h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-intro {
        font-size: 17px;
        margin-left: auto;
        margin-right: auto;
    }

@media (max-width: 700px) {
    .hero-benefits {
        align-items: flex-start;
        width: 100%;
        max-width: 320px;
        margin: 10px auto;
        gap: 4px;
    }

    .hero-benefits span {
        font-size: 14px;
        line-height: 1.35;
        text-align: left;
    }
}

    .hero-price-note {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        width: auto;
        max-width: none;
        text-align: center;
    }

    .homepage-hero-image img {
        max-width: 280px;
    }
}

/* =========================
   Algemene sitebreedte
========================= */

.container {
    max-width: 1240px;
    width: calc(100% - 15px);
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 700px) {
    .homepage-hero-card {
        padding: 18px 14px 14px 14px;
    }

    .hero-intro {
        margin-bottom: 14px;
    }

    .hero-price-note {
        margin: 14px 0 10px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        margin-top: 8px;
        margin-bottom: 4px;
    }

    .hero-primary-cta {
        width: 100%;
        white-space: normal;
    }

    .hero-secondary-cta {
        display: inline-block;
        background: transparent;
        color: #007bff;
        padding: 0;
        margin: 2px auto 0 auto;
        font-weight: 600;
        box-shadow: none;
        text-decoration: underline;
        text-align: center;
        align-self: center;
    }

    .hero-secondary-cta:hover {
        background: transparent;
        color: #0056b3;
        text-decoration: underline;
    }

    .homepage-hero-content {
        gap: 8px;
    }

    @media (max-width: 700px) {
       .homepage-hero-image {
    display: flex;
    justify-content: flex-end;
    margin-top: -5px;
    margin-bottom: -12px;
    overflow: visible;
}

.homepage-hero-image img {
    max-width: 300px;
    transform: translateX(34px) translateY(-10px) rotate(-2deg);
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.14));
}
    }
}
@media (max-width: 700px) {
    body.landing-page .container {
        width: calc(100% - 5px);
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 700px) {
    .container {
        width: calc(100% - 8px);
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }
}
/* =========================
   Homepage - Hoe werkt het
========================= */

.how-it-works-section {
    margin: 28px 0;
    padding: 30px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.how-it-works-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 26px auto;
}

.how-it-works-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #007bff;
    font-size: 15px;
    font-weight: 700;
}

.how-it-works-heading h2 {
    margin: 0 0 12px 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f2538;
}

.how-it-works-heading p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    color: #111827;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.how-it-works-step {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
}

.how-it-works-number {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #007bff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 14px;
}

.how-it-works-step h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0f2538;
}

.how-it-works-step p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
}
.how-it-works-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.how-it-works-title-row h3 {
    margin: 0;
}


@media (max-width: 800px) {
    .how-it-works-section {
        padding: 18px 12px;
        margin: 22px 0;
    }

    .how-it-works-heading {
        margin-bottom: 18px;
    }

    .how-it-works-heading span {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .how-it-works-heading h2 {
        font-size: 25px;
        line-height: 1.18;
        margin-bottom: 10px;
    }

    .how-it-works-heading p {
        font-size: 16px;
        line-height: 1.4;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .how-it-works-step {
        padding: 16px;
        border-radius: 15px;
    }

    .how-it-works-number {
        width: 32px;
        height: 32px;
        margin-bottom: 0;
        font-size: 16px;
        flex-shrink: 0;
    }

    .how-it-works-step h3 {
        font-size: 21px;
        line-height: 1.2;
    }

    .how-it-works-step p {
        font-size: 15px;
        line-height: 1.4;
    }
}
.featured-flashcard-section {
    margin: 30px 0;
    padding: 30px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.featured-flashcard-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 26px auto;
}

.featured-flashcard-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #007bff;
    font-size: 15px;
    font-weight: 700;
}

.featured-flashcard-heading h2 {
    margin: 0 0 12px 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f2538;
}

.featured-flashcard-heading p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    color: #111827;
}

.featured-flashcard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.featured-flashcard-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.featured-flashcard-card-recommended {
    border: 2px solid #007bff;
}

.featured-flashcard-ribbon {
    margin: -22px -22px 18px -22px;
    padding: 10px 14px;
    background: #007bff;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
    border-radius: 14px 14px 0 0;
}

.featured-flashcard-image {
    height: 145px;
    border-radius: 14px;
    background: #f1f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
}

.featured-flashcard-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.featured-flashcard-card h3 {
    margin: 0 0 12px 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0f2538;
}

.featured-flashcard-price {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    color: #0f2538;
}

.featured-flashcard-card p {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
}

.featured-flashcard-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.featured-flashcard-card li {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 1.35;
    color: #0f2538;
}

.featured-flashcard-meta {
    margin-top: auto;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.featured-flashcard-card form {
    margin: 0;
}

.featured-flashcard-card .btn {
    width: 100%;
}

.featured-flashcard-footer {
    margin-top: 22px;
    text-align: center;
}

@media (max-width: 900px) {
    .featured-flashcard-section {
        padding: 20px 12px;
        margin: 22px 0;
    }

    .featured-flashcard-heading {
        margin-bottom: 18px;
    }

    .featured-flashcard-heading span {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .featured-flashcard-heading h2 {
        font-size: 26px;
        line-height: 1.18;
        margin-bottom: 10px;
    }

    .featured-flashcard-heading p {
        font-size: 16px;
        line-height: 1.4;
    }

    .featured-flashcard-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .featured-flashcard-card {
        padding: 18px;
        border-radius: 15px;
    }

    .featured-flashcard-ribbon {
        margin: -18px -18px 14px -18px;
        padding: 9px 12px;
        border-radius: 13px 13px 0 0;
        font-size: 14px;
    }

    .featured-flashcard-image {
        height: 135px;
        margin-bottom: 14px;
        border-radius: 12px;
    }

    .featured-flashcard-card h3 {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .featured-flashcard-price {
        font-size: 27px;
        margin-bottom: 10px;
    }

    .featured-flashcard-card p {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .featured-flashcard-card ul {
        margin-bottom: 12px;
    }

    .featured-flashcard-card li {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .featured-flashcard-meta {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .featured-flashcard-card .btn {
        padding: 11px 16px;
    }

    .featured-flashcard-footer {
        margin-top: 16px;
    }
}
body.landing-page {
    position: relative;
}

body.landing-page::before {
    content: "";
    position: absolute;
    top: 10px;
    right: -95px;
    width: 250px;
    height: 250px;
    background-image: url("../uploads/Images/lifebouy.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}

.top-trust-bar,
.site-header {
    position: relative;
    z-index: 5;
}

body.landing-page .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    body.landing-page::before {
        display: none;
    }
}
@media (max-width: 700px) {
    .hero-buttons .hero-secondary-cta {
        display: inline-block !important;
        width: auto !important;
        max-width: none !important;
        align-self: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
        background: transparent !important;
        color: #007bff !important;
        text-align: center !important;
        text-decoration: underline !important;
        box-shadow: none !important;
    }
}
@media (max-width: 700px) {
    .card.account-box {
        padding: 18px 14px;
        margin: 18px 0;
    }

    .card.account-box h3 {
        font-size: 22px;
        line-height: 1.22;
        margin-top: 0;
        margin-bottom: 10px;
        font-weight: 800;
    }

    .card.account-box p {
        font-size: 16px;
        line-height: 1.35;
        margin-top: 0;
        margin-bottom: 14px;
        font-weight: 400;
    }

    .card.account-box .btn {
        padding: 12px 16px;
        margin-bottom: 8px;
    }

    .card.account-box .btn:last-child {
        margin-bottom: 0;
    }
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form label {
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
}

.success-message {
    margin: 14px 0;
    padding: 12px 14px;
    background: #ecfdf5;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    color: #166534;
    font-weight: 600;
}

.error-message {
    margin: 14px 0;
    padding: 12px 14px;
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    color: #991b1b;
    font-weight: 600;
}

@media (max-width: 700px) {
    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
    }
}