﻿:root {
    --bg-dark: #050a0f;
    --panel-bg: #0d161f;
    --cyan: #00f2ff;
    --text-dim: #94a3b8;
    --white: #ffffff;
    --bg-color: #050a0f;
    --red: #ff4d4d;
    --text-main: #cbd5e1;
    --border: rgba(0, 242, 255, 0.1);
}

/* Navigation */
.nav-public {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(13, 22, 31, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--white);
}

    .logo span {
        color: var(--cyan);
    }

.sub-brand {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.55rem;
    color: #94a3b8; /* Sagte grys vir kontras */
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    margin-left: 15px;
    opacity: 0.8;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

    .nav-links a:hover {
        color: var(--cyan);
    }

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(to bottom, rgba(5, 10, 15, 0.7), rgba(5, 10, 15, 0.9)), url('hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: Creates a cool parallax effect */
    position: relative;
    overflow: hidden;
}

    /* Add a glowing "Pulse" to the background to make it feel alive */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
        animation: backgroundPulse 8s infinite ease-in-out;
        pointer-events: none;
    }

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero h1 {
    font-size: 4rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1;
    color: var(--white);
}

    .hero h1 span {
        color: var(--cyan);
        text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
    }

.hero p {
    color: var(--text-dim);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px 0 40px 0;
}

/* Tactical Button */
.btn-cta {
    background: var(--cyan);
    border: none;
    padding: 3px;
    cursor: pointer;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-inner {
    background: var(--bg-dark);
    color: var(--cyan);
    padding: 15px 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--cyan));
}

    .btn-cta:hover .btn-cta-inner {
        background: var(--cyan);
        color: var(--bg-dark);
    }

/* Pricing Section */
.pricing {
    padding: 100px 10%;
    text-align: center;
    background: linear-gradient(rgba(5, 10, 15, 0.8), rgba(5, 10, 15, 0.8)), url('pricing.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.price-card {
    background: var(--panel-bg);
    border: 1px solid var(--cyan);
    display: inline-block;
    padding: 50px;
    border-radius: 10px;
    position: relative;
    clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);

}

    .price-card h3 {
        text-transform: uppercase;
        letter-spacing: 3px;
        margin: 0;
        color: var(--text-dim);
    }

.amount {
    font-size: 5rem;
    font-weight: 900;
    margin: 20px 0;
    color: var(--cyan);
}

    .amount span {
        font-size: 1.5rem;
        vertical-align: middle;
    }


.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.price-card {
    background: var(--panel-bg);
    border: 1px solid rgba(0, 242, 255, 0.3);
    flex: 1;
    max-width: 400px;
    padding: 40px;
    position: relative;
    clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
    transition: 0.4s;
}

    /* Spesiale fokus vir die jaarlikse kaart */
    .price-card.featured {
        border: 1px solid var(--cyan);
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(0, 242, 255, 0.2);
        z-index: 2;
    }

.best-value-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--cyan);
    color: var(--bg-dark);
    padding: 5px 40px;
    font-weight: 900;
    font-size: 0.7rem;
    transform: rotate(40deg);
    text-transform: uppercase;
}

.amount {
    font-size: 4rem; /* Effens kleiner gemaak vir balans */
    font-weight: 900;
    margin: 15px 0;
    color: var(--cyan);
}

.save-badge {
    color: #00ffaa;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}


.trial-text {
    background: rgba(0, 242, 255, 0.1);
    color: var(--cyan);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 30px;
}

.features-list {
    text-align: left;
    margin: 30px 0;
    list-style: none;
    padding: 0;
    color: var(--white);
}

    .features-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .features-list li::before {
            content: '✓';
            color: var(--cyan);
            font-weight: bold;
        }

/* Footer */
footer {
    padding: 50px 10%;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Decorative Scanlines */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
    z-index: 2000;
    opacity: 0.1;
}

/* Features */
.features-section {
    padding: 80px 10%;
    background: linear-gradient(to bottom, var(--bg-dark), #0a131c);
    text-align: center;
}

.section-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 50px;
    color: var(--white);
}

    .section-title span {
        color: var(--cyan);
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--panel-bg);
    padding: 40px 30px;
    border-left: 2px solid var(--cyan);
    position: relative;
    transition: 0.3s;
    text-align: left;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

    .feature-card:hover {
        background: rgba(0, 242, 255, 0.05);
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    color: var(--cyan);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--cyan));
}

.feature-card h4 {
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin: 0;
}

.card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--cyan);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.2;
}

/* Contact Us */
.contact-section {
    padding: 100px 10%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
}

.contact-container {
    background: var(--panel-bg);
    width: 100%;
    max-width: 800px;
    padding: 50px;
    border: 1px solid var(--border-glow);
    position: relative;
    clip-path: polygon(0 0, 97% 0, 100% 3%, 100% 100%, 3% 100%, 0 97%);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    color: var(--white);
}

    .contact-info h2 span {
        color: var(--cyan);
    }

.contact-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 0.9rem;
}

    .info-item svg {
        width: 20px;
        height: 20px;
        color: var(--cyan);
    }

/* Form Fields */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-wrapper {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #162431;
    border: 1px solid #2d3e50;
    padding: 15px;
    color: white;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: 0.3s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%, 0 80%);
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: var(--cyan);
        box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
    }

.contact-form textarea {
    height: 120px;
    resize: none;
}

/* Override cta button for form width */
.form-btn {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

.secondary-cta .btn-cta-inner {
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
}

.secondary-cta:hover .btn-cta-inner {
    background: rgba(0, 242, 255, 0.1);
    color: white;
}

.checkout-wrapper {
    background: #050a0f;
    min-height: 100vh;
    padding: 60px 10%;
    color: white;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.section-heading {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #94a3b8;
    margin-bottom: 25px;
}

    .section-heading span {
        color: #00f2ff;
    }

.zenit-input {
    width: 100%;
    background: #0d161f;
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 12px;
    color: white;
    margin-bottom: 15px;
    outline: none;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%, 0 70%);
}

    .zenit-input:focus {
        border-color: #00f2ff;
        box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
    }

.summary-card {
    background: #0d161f;
    padding: 30px;
    border: 1px solid #00f2ff;
    clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 0 100%);
}

.btn-pay-now {
    width: 100%;
    background: #00f2ff;
    color: #050a0f;
    border: none;
    padding: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 20px;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    transition: 0.3s;
}

    .btn-pay-now:hover {
        background: #ffffff;
        box-shadow: 0 0 20px #00f2ff;
    }

.total-amount {
    font-size: 2rem;
    color: #00f2ff;
    font-weight: 900;
}

.promo-badge {
    background: rgba(0, 255, 170, 0.1);
    color: #00ffaa;
    padding: 10px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: bold;
    margin: 15px 0;
    border: 1px solid #00ffaa;
}




/* --- PUBLIC PAGE RESPONSIVE OVERRIDES --- */

@media (max-width: 992px) {
    /* Reduce large hero text for tablets */
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .pricing-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    /* 1. Navigation: Stack logo and links */
    .nav-public {
        flex-direction: column;
        padding: 15px 5%;
        gap: 15px;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }

        .nav-links a {
            margin-left: 0; /* Remove the left margin used for desktop spacing */
            font-size: 0.8rem;
        }

    /* 2. Hero Section */
    .hero {
        height: auto;
        padding: 100px 20px;
        background-attachment: scroll; /* Parallax feels "jumpy" on mobile browsers */
    }

        .hero h1 {
            font-size: 2.2rem;
        }

        .hero p {
            font-size: 1rem;
        }

    /* 3. Pricing Cards: Stack vertically */
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
        transform: none !important; /* Remove the "featured" scale effect to prevent overlap */
    }

    .amount {
        font-size: 3.5rem;
    }

    /* 4. Features Grid */
    .features-grid {
        grid-template-columns: 1fr; /* Single column */
        padding: 0 10px;
    }

    /* 5. Contact Section */
    .contact-section {
        padding: 50px 5%;
    }

    .contact-container {
        grid-template-columns: 1fr; /* Stack info and form */
        padding: 25px;
        clip-path: none; /* Simplify shape for small screens */
    }

    /* 6. Checkout Page */
    .checkout-wrapper {
        padding: 40px 5%;
    }

    .checkout-grid {
        grid-template-columns: 1fr; /* Stack form and summary */
        gap: 30px;
    }

    .summary-card {
        clip-path: none; /* Better padding safety */
    }

    .total-amount {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .btn-cta-inner {
        padding: 12px 25px;
        font-size: 0.8rem;
    }

    /* Ensure long feature list items don't break layout */
    .features-list li {
        font-size: 0.85rem;
    }
}


/* --- MODAL & BOX CLIPPING FIXES --- */

@media (max-width: 768px) {
    /* 1. Ensure the background overlay allows scrolling if the modal is tall */
    .zenit-overlay {
        align-items: flex-start; /* Start at top so it doesn't cut off the header */
        padding: 20px 10px;
        overflow-y: auto; /* Enable scroll on the overlay itself */
        display: block; /* Change from flex to block to allow natural document flow */
    }

    /* 2. Reset fixed widths and heights on all large containers */
    .login-card,
    .user-modal,
    .create-container,
    .pay-container,
    .receipt-paper {
        width: 95% !important;
        margin: 20px auto !important; /* Centers the modal with space top/bottom */
        height: auto !important; /* Let the content define the height */
        max-height: none !important;
        position: relative;
        left: 0 !important;
        transform: none !important;
    }

    /* 3. Tactical Clip-Path Fix: 
       Deeply angled clip-paths often cut off corners of buttons/inputs on narrow screens.
       We reduce the "intensity" of the clip for mobile. */
    .pay-container, .receipt-paper, .btn-complete {
        clip-path: none !important;
        border-radius: 8px; /* Use a standard rounded corner for better UX */
    }

    /* 4. Fix for the 'Body' height issue */
    .body {
        height: auto !important;
        min-height: 100vh;
        overflow: visible !important;
        display: block !important; /* Switching from Flex to Block prevents squishing */
    }

    /* 5. Ensure inputs don't zoom the screen on iPhone (font-size must be at least 16px) */
    .input, .zenit-input, .contact-form input {
        font-size: 16px !important;
    }
}


.privacy {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 40px 20px;
}

.privacy .container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--panel-bg);
    padding: 60px;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    clip-path: polygon(0 0, 100% 0, 100% 98%, 98% 100%, 0 100%);
}

.privacy header {
    border-bottom: 2px solid var(--red);
    padding-bottom: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.privacy .logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

    .privacy .logo span {
        color: var(--cyan);
    }

.privacy .sub-logo {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 5px;
}

.privacy h1.page-title {
    font-size: 1.2rem;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
}

.privacy section {
    margin-bottom: 35px;
}

.privacy h2 {
    font-size: 1.1rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.privacy p, li {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.privacy ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy .highlight-box {
    background: rgba(0, 242, 255, 0.03);
    padding: 25px;
    border-left: 3px solid var(--cyan);
    margin-bottom: 30px;
}

.privacy .corporate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border: 1px dashed var(--border);
}

.privacy .grid-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
}

.privacy footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
}

@media (max-width: 600px) {
    .privacy .container {
        padding: 30px 20px;
    }

    .privacy .corporate-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    .privacy {
        background: white;
        color: black;
        padding: 0;
    }

    .privacy .container {
        border: none;
        box-shadow: none;
        width: 100%;
        max-width: 100%;
        background: white;
    }

    .privacy .logo, .logo span, h1, h2 {
        color: black !important;
    }

    .privacy .highlight-box {
        background: #f0f0f0;
        border-left: 3px solid black;
    }
}

.privacy .stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 2px solid rgba(255, 77, 77, 0.2);
    padding: 5px 10px;
    color: rgba(255, 77, 77, 0.2);
    transform: rotate(15deg);
    font-weight: bold;
    text-transform: uppercase;
    pointer-events: none;
}

.privacy .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px; /* Matches the size in your image */
    height: 44px;
    background-color: var(--red); /* #ff4d4d */
    border: none;
    border-radius: 50%; /* Perfect circle */
    cursor: pointer;
    z-index: 1000; /* Ensures it is always on top */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
    /* Red glow effect */
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.4);
}

    /* Hover/Focus effect */
    .privacy .btn-close:hover {
        background-color: #ff3333; /* Slightly brighter red */
        transform: scale(1.05) rotate(90deg); /* Slight scale up and rotate */
        box-shadow: 0 0 25px rgba(255, 77, 77, 0.7); /* Brighter glow */
    }

    /* Styles for the 'X' SVG inside the button */
    .privacy .btn-close svg {
        width: 20px;
        height: 20px;
        fill: none;
    }





.terms {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 40px 20px;
}

.terms .container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--panel-bg);
    padding: 60px;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    clip-path: polygon(0 0, 100% 0, 100% 98%, 98% 100%, 0 100%);
}

.terms header {
    border-bottom: 2px solid var(--red);
    padding-bottom: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.terms .logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

    .terms .logo span {
        color: var(--cyan);
    }

.terms .sub-logo {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 5px;
}

.terms h1.page-title {
    font-size: 1.2rem;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
}

.terms .definitions {
    background: rgba(0, 242, 255, 0.03);
    padding: 25px;
    border-left: 3px solid var(--cyan);
    margin-bottom: 40px;
}

.terms .definitions p {
    margin: 10px 0;
    font-size: 0.95rem;
}

.terms strong {
    color: #fff;
}

.terms section {
    margin-bottom: 30px;
}

.terms h2 {
    font-size: 1.1rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.terms p, li {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.terms footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.terms .stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 2px solid rgba(255, 77, 77, 0.2);
    padding: 5px 10px;
    color: rgba(255, 77, 77, 0.2);
    transform: rotate(15deg);
    font-weight: bold;
    text-transform: uppercase;
    pointer-events: none;
}

@media (max-width: 600px) {
    .terms .container {
        padding: 30px 20px;
    }

    .terms .logo {
        font-size: 1.8rem;
    }
}

@media print {
    .terms {
        background: white;
        color: black;
        padding: 0;
    }

    .terms .container {
        border: none;
        box-shadow: none;
        width: 100%;
        max-width: 100%;
        background: white;
        color: black;
    }

    .terms .logo, .logo span, h1, h2 {
        color: black !important;
    }

    .terms .definitions {
        background: #f0f0f0;
        border-left: 3px solid black;
    }
}

.terms .stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 2px solid rgba(255, 77, 77, 0.2);
    padding: 5px 10px;
    color: rgba(255, 77, 77, 0.2);
    transform: rotate(15deg);
    font-weight: bold;
    text-transform: uppercase;
    pointer-events: none;
}

.terms .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px; /* Matches the size in your image */
    height: 44px;
    background-color: var(--red); /* #ff4d4d */
    border: none;
    border-radius: 50%; /* Perfect circle */
    cursor: pointer;
    z-index: 1000; /* Ensures it is always on top */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
    /* Red glow effect */
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.4);
}

    /* Hover/Focus effect */
    .terms .btn-close:hover {
        background-color: #ff3333; /* Slightly brighter red */
        transform: scale(1.05) rotate(90deg); /* Slight scale up and rotate */
        box-shadow: 0 0 25px rgba(255, 77, 77, 0.7); /* Brighter glow */
    }

    /* Styles for the 'X' SVG inside the button */
    .terms .btn-close svg {
        width: 20px;
        height: 20px;
        fill: none;
    }
