﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}



body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.1rem;
    background: #d7f6ff;
}

p {
    margin-bottom: 20px;
}

strong {
    color: #2c3e50;
    font-size: 1rem;
}


.zet-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.zet-section li {
    margin-bottom: 15px;
    position: relative;
    list-style-type: none;
    padding-left: 35px;
}

    .zet-section li::after {
        content: "";
        position: absolute;
        left: 9px;
        top: 5px;
        width: 5px;
        height: 12px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .zet-section li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 3px;
        width: 22px;
        height: 22px;
        background-color: #3498db;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

li p {
    margin-bottom: 5px;
}

.container {
    max-width: 1245px;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.header {
    color: white;
    padding: 0.4rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

.zet-section {
    margin: 3rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 2.2rem;
    color: #4cdb79;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #5e5d5d;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

    .nav-link:hover {
        color: #4cdb79;
    }

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    width: 320px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid #e5e0e0;
}

    .dropdown-item:last-child {
        border-bottom: none;
    }

.dropdown-link {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
    transition: all 0.3s;
}

    .dropdown-link:hover {
        color: #2d5bbd;
        background-color: #f8f9fa;
        padding-left: 1.4rem;
    }

 

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-login {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .btn-login:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.btn-signup {
    background-color: #0551b1;
    color: white;
    font-size: 1rem;
}

    .btn-signup:hover {
        background-color: #3bc069;
    }

/* Hamburger open span - top left */
#menu-open-span {
    position: fixed;
    top: 1rem;
    left: 1rem;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    display: none; /* visible only on mobile */
}

    #menu-open-span svg {
        width: 28px;
        height: 28px;
        stroke: #3a3434;
        display: none;
    }

/* Close span inside menu */
#menu-close-span {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    padding: 0;
    z-index: 1101;
    display: none; /* visible only on mobile menu */
}

    #menu-close-span svg {
        width: 28px;
        height: 28px;
        stroke: white;
    }



/* Mobile styles */
@media (max-width: 950px) {
    .logo {
        display: flex;
        align-items: center;
        gap: 5rem;
        margin-left: 6rem;
    }

    #menu-open-span svg {
        width: 28px;
        height: 28px;
        stroke: #3a3434;
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -320px;
        background-color: #1a3a8f;
        width: 320px;
        height: 100vh;
        flex-direction: column;
        gap: 0;
        padding: 4rem 0 2rem 0;
        transition: left 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    }

        .nav-menu.active {
            left: 0;
        }

    .nav-item {
        width: 100%;
        padding: 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: space-between;
        color: #ffff;
    }

    .menu-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: none;
        border-radius: 0;
        background-color: #0f2a6d;
    }

    .nav-item.active .menu-dropdown {
        max-height: 500px;
    }

    .dropdown-item {
        padding-left: 3rem;
        border-bottom: 1px solid #4e4c4c;
    }

    .dropdown-link {
        color: white;
    }

        .dropdown-link:hover {
            color: #4cdb79;
            background-color: rgba(255, 255, 255, 0.1);
        }

    .dropdown-icon {
        color: #4cdb79;
    }

    .header-buttons {
        display: none;
    }

    /* Show hamburger span when menu is closed */
    #menu-open-span {
        display: block;
    }

    /* Show close span inside menu when active */
    .nav-menu.active #menu-close-span {
        display: block;
    }
}

/* Content styling (optional) */
.content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 !important;
}

footer {
    background: linear-gradient(to right, #4537b1, #185c26);
    color: #fff;
    padding: 5rem 0 0;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

    .footer-column h2 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        position: relative;
        padding-bottom: 0.9rem;
    }

        .footer-column h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #8ec915;
        }

    .footer-column ul {
        list-style: none;
        padding-left: 0rem;
        padding-top: 10px;
    }

        .footer-column ul li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }

    .footer-column a {
        color: #ecf0f1;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .footer-column a:hover {
            color: #ff7e5f;
            transform: translateX(5px);
        }

    .footer-column p {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
    }

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.2rem 0;
    text-align: center;
    margin-top: 2rem;
}

    .footer-bottom p {
        margin: 0;
        font-size: 0.8rem;
        opacity: 0.8;
    }

.badges {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    min-width: 275px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.icon-shield {
    width: 14px;
    height: 16px;
    background-color: #ff7e5f;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

.icon {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.icon-lock {
    width: 12px;
    height: 12px;
    border: 2px solid #ff7e5f;
    border-radius: 2px;
    position: relative;
}

    .icon-lock:before {
        content: '';
        position: absolute;
        top: -5px;
        left: 1px;
        width: 8px;
        height: 6px;
        border: 2px solid #ff7e5f;
        border-radius: 4px 4px 0 0;
        border-bottom: none;
    }

 
.faq-section {
    padding: 5rem 0;
}

.zet-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: left;
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    position: relative;
}

    .zet-section h2::after {
        content: "";
        display: block;
        height: 3px;
        width: 100%;
        background: linear-gradient(to right, #f39c12 60px, #f1ecec 30%);
        border-radius: 2px;
        margin-top: 15px;
    }

.faq-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
}

    .faq-item:last-child {
        border-bottom: none;
    }

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

    .faq-question h3 {
        font-size: 1.4rem;
        font-weight: 600;
    }

    .faq-question:hover {
        background-color: #f8f9fa;
    }

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

    .faq-icon:before, .faq-icon:after {
        content: '';
        position: absolute;
        background: linear-gradient(258deg, #0774FF 0.95%, #033AA7 100%);
        transition: transform 0.3s;
    }

    .faq-icon:before {
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        transform: translateY(-50%);
    }

    .faq-icon:after {
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
    }

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: #283030;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-icon:after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

.icon-container {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e3dfdf;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    }

.card-header {
    background: linear-gradient(120deg, #512baf, #1e8146);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

    .card-header.most-popular {
        background: linear-gradient(120deg, #e74c3c, #c0392b);
    }

    .card-header h3 {
        font-size: 2rem;
        margin-bottom: 8px;
    }

.requirements {
    list-style-type: none;
    margin: 20px 0;
    padding-left: 0;
}

    .requirements li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
    }

        .requirements li:last-child {
            border-bottom: none;
        }

        .requirements li i {
            color: #3498db;
            margin-right: 10px;
        }

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #934ad3;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(5deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 25px;
}

.loan-amount {
    font-size: 1.4rem;
    color: #2c3e50;
    text-align: center;
    margin: 15px 0;
    font-weight: bold;
}

.apply-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #934ad3;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    margin: 20px 0;
    text-decoration: none;
}

    .apply-btn:hover {
        background: #219653;
        color: white;
    }

.card-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

    .card-footer a {
        color: #1023bd;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .card-footer a:hover {
            color: #2980b9;
            text-decoration: underline;
        }

.hero-section {
    padding: 80px 0;
    width: 100%;
    background: #fdfdfd;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        aspect-ratio: 1/1;
        object-fit: cover;
    }

h1 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    /* color: #be9006;*/
    color: #9b7607;
    position: relative;
}


.hero-flex {
    display: flex;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
}

.disclaimer {
    margin: 30px 0;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    padding: 20px;
    background: rgb(110 161 107 / 10%);
    border-radius: 10px;
    border-left: 4px solid #0551b1;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.zet-btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

    .zet-btn i {
        margin-right: 10px;
        font-size: 1.2rem;
    }

.btn-primary {
    background: #0551b1;
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-3px);
    }

.btn-secondary {
    background: #7e5f02;
    color: white;
    border: 2px solid white;
    font-weight: 700;
}

    .btn-secondary:hover {
        background: #be9006;
        color: white;
        transform: translateY(-3px);
    }

.btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.header-badge {
    display: flex;
    align-items: center;
    background: rgb(0 20 1 / 10%);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

    .header-badge i {
        margin-right: 8px;
        color: #4459c9;
    }

.zet-section p {
    text-align: left;
}

@media (max-width: 992px) {
    .container {
        flex-direction: column;
        padding-left: 0px;
        padding-right: 0px;
    }

    .hero-content {
        padding-right: 10px;
        padding-left: 10px;
    }

    h1 {
        font-size: 2.6rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .disclaimer {
        margin: 30px auto;
        text-align: left;
    }

    .faq-question h3 {
        font-size: 1.2rem;
        font-weight: 600;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-content {
        padding-right: 10px;
        padding-left: 10px;
    }

    h1 {
        font-size: 1.9rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .disclaimer {
        font-size: 1rem;
        padding: 15px;
    }

    .trust-badges {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

    .header-badge {
        display: flex;
        align-items: center;
        background: rgb(0 20 1 / 10%);
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 0.7rem;
        margin-bottom: 25px;
    }
}

.layout {
    display: flex;
    flex-direction: row;
    gap: 20px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-content {
    padding: 25px;
    background: white;
    width: 90%;
}

.sidebar {
    padding: 25px;
    background: #f0f5ff;
    border-left: 4px solid #f39c12;
    width: 40%;
}

.sidebar-title {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #cbd5e0;
}

.related-links {
    list-style-type: none;
}

    .related-links li {
        margin-bottom: 12px;
        padding: 12px 15px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s, box-shadow 0.2s;
    }

        .related-links li:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

    .related-links a {
        text-decoration: none;
        color: #0551b1;
        display: block;
        font-weight: 500;
    }

        .related-links a:hover {
            color: #3b5bdb;
        }
.article-author-meta {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebe2e2;
    flex-wrap: wrap;
    border-top: 1px solid #ebe2e2;
    padding-top: 10px;
}

.article-author-info {
    display: flex;
    align-items: center;
    margin-right: 30px;
    font-size: 1rem;
}

.article-update-date {
    padding: 0px 0px;
    border-radius: 5px;
    font-size: 1rem;
}

.article-author-a-span {
    padding-left: 10px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.grid-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

    .grid-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

.grid-img-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.grid-img-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover .grid-img {
    transform: scale(1.05);
}

.grid-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #3b82f6;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.grid-content {
    padding: 25px;
}

.grid-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 12px;
}

.grid-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    transition: color 0.3s;
}

.grid-title-link:hover .grid-title {
    color: #3b82f6;
}

.grid-text {
    color: #64748b;
    margin-bottom: 20px;
}

.grid-meta {
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 0.85rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.section-header {
    margin-bottom: 3rem;
    position: relative;
    text-align: left;
    margin-top: 3rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    /* margin-bottom: 1rem;*/
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    padding-top: 10px;
}

.section-divider {
    height: 2px;
    background: linear-gradient(to right, #3b82f6, #94cf07);
    border-radius: 2px;
}       
@media (max-width: 768px) {
  

    .layout {
        display: flex;
        flex-direction: row;
        gap: 20px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        margin-top: 10px;
        margin-bottom: 50px;
        flex-direction: column;
    }
    .zet-section {
        margin: 3rem 0.2rem;
    }

    .faq-question {
        padding: 0.3rem;
        gap: 20px;
    }

    .sidebar {
        flex: 3;
        min-width: 0;
        border-left: none;
        border-top: none;
        width: 100%;
        padding: 10px;
    }

    .sidebar-title {
        color: #2d3748;
        margin-bottom: 20px;
        font-size: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #cbd5e0;
    }

    .page-content {
        padding: 25px 10px;
        background: white;
        width: 100%;
    }

    .zet-section ul {
        margin: 20px 0;
        padding-left: 0px;
    }

    .zet-section h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2c3e50;
        text-align: left;
        margin-bottom: 1.5rem 24px;
        padding-bottom: 0.6rem;
        position: relative;
        line-height: 2.4rem;
    }

    .zet-section h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
        text-align: left;
        padding-bottom: 0.6rem;
        position: relative;
        line-height: 2rem;
    }
}
