/* ==========================================================================
   Base Styles - Mobile First
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Hide scrollbar but keep scrolling */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body {
    font-family: 'Outfit', sans-serif;
    background: url('../images/2.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

/* Stop scrolling when nav is open */
body.nav-open {
    overflow: hidden;
}

/* Generic Button Styles (Mobile) */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #5dd3c6;
    color: #ffff;
    font-weight: 600;
}

.btn-primary:hover {
    background: #4bc4b7;
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100; /* Above everything */
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    position: relative;
    z-index: 1101;
}

.nav-left .logo {
    height: 90px;
    width: auto;
    margin: -15px 0;
    z-index: 1101;
}

/* Hamburger Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1102; /* Above everything */
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu Overlay */
.nav-center {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #1a1d29;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1050;
}

.nav-center.nav--open {
    right: 0;
}

.nav-center a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    position: relative;
    padding-bottom: 8px;
}

.nav-center a:hover,
.nav-center a.active {
    color: #5dd3c6;
}

.nav-center a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #5dd3c6;
}

.nav-right {
    z-index: 1101;
    display: none;
}

/* Hamburger to X animation */
.nav-toggle.nav--open span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.nav--open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.nav--open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background: url('../images/3.png') no-repeat center 20%;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    padding: 9rem 1.5rem 2rem 2.5rem;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    width: 100%;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1400px;
}

.hero-text {
    width: 100%;
    max-width: 100%;
}

.hero-label {
    color: #5dd3c6;
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.4rem;
    color: white;
}

.hero-subtitle-inline {
    color: #5dd3c6;
    display: block;
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    color: #5dd3c6;
    font-size: 1.8rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1.5rem;
}

.hero-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem 1.8rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    align-items: flex-start;
}

.hero-list li::before {
    content: '✓';
    color: #5dd3c6;
    margin-right: 0.6rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.hero-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 17px;
}

.hero-drone {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-drone img {
    max-width: 320px;
    width: 100%;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5));
}


/* ==========================================================================
   Why DCS Section
   ========================================================================== */

.why {
    padding: 4rem 1rem;
    text-align: center;
    background: url('../images/3.png') no-repeat center center;
    background-size: cover;
}

.why h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.why h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #5dd3c6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 0 0.5rem;
}

.why-card-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.why-card-img:hover {
    transform: scale(1.02);
}

/* 5th card centered on mobile */
.why-card-img:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works {
    padding: 4rem 1.5rem;
    background: url('../images/3.png') no-repeat center center;
    background-size: cover;
    text-align: center;
}

.how-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.how-it-works h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.how-it-works h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #5dd3c6;
}

.how-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.how-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.how-card:hover {
    transform: translateY(-5px);
    border-color: #5dd3c6;
}

.how-card h3 {
    color: #5dd3c6;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.how-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}


/* ==========================================================================
   Contact / Offerte Section
   ========================================================================== */
.contact {
    padding: 4rem 1.5rem;
    background: url('../images/3.png') no-repeat center center;
    background-size: cover;
    text-align: center;
}

.contact-inner {
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #5dd3c6;
}

.contact-intro {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: box-shadow 0.3s, transform 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(93, 211, 198, 0.4);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio Buttons */
.radio-group {
    text-align: left;
}

.radio-label {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.radio-option:hover {
    color: #5dd3c6;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #5dd3c6;
}

.radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #5dd3c6;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.2s;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    transform: scale(1);
}

/* Checkbox */
.checkbox-group {
    text-align: left;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-option a {
    color: #5dd3c6;
    text-decoration: underline;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    margin-top: 2px;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #5dd3c6;
    background: #5dd3c6;
}

.checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    opacity: 1;
}

/* Submit Button */
.btn-submit {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
    padding: 4rem 1.5rem;
    background: url('../images/3.png') no-repeat center center;
    background-size: cover;
    text-align: center;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #5dd3c6;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(93, 211, 198, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #5dd3c6;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #5dd3c6;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    text-align: left;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #0a0c10;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
}

.footer-brand {
    grid-column: 1 / -1;
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.social-link:hover {
    background: #5dd3c6;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

/* Contact kolom full-width op mobiel */
.footer-col:last-child {
    grid-column: 1 / -1;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: #5dd3c6;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: #5dd3c6;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==========================================================================
   WhatsApp Button
   ========================================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #5dd3c6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(93, 211, 198, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(93, 211, 198, 0.5);
}

.whatsapp-btn svg {
    width: 26px;
    height: 26px;
    color: white;
}

/* ==========================================================================
   Desktop and Tablet Styles
   ========================================================================== */
@media (min-width: 768px) {
    /* --- BUTTONS --- */
    .btn {
        padding: 1.1rem 2.4rem;
        font-size: 18px;
    }
    
    .nav-right {
        display: block;
    }

    .nav-right .btn {
        padding: 0.6rem 1.4rem !important;
        font-size: 14px !important;
    }

    /* --- NAVIGATION --- */
    .nav {
        flex-wrap: nowrap;
        padding: 0.3rem 3rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-left {
        margin-left: -4rem;
    }

    .nav-left .logo {
        height: 140px;
        margin: -30px 0;
    }
    
    .nav-center {
        position: static;
        height: auto;
        width: auto;
        background: transparent;
        flex-direction: row;
        gap: 2.5rem;
        transition: none;
        display: flex;
        flex: 1;
        justify-content: center;
    }

    .nav-center a {
        font-size: 15px;
        font-weight: 400;
    }

    /* --- HERO --- */
    .hero {
        padding: 0 3rem;
        padding-top: 80px;
        height: 100vh;
        background-position: center center;
        background-size: cover;
        align-items: center;
    }

    .hero-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 2rem;
        height: auto;
        padding-left: 0;
    }

    .hero-text {
        max-width: 550px;
        width: auto;
        padding-left: 2rem;
    }

    .hero-label {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .hero-text h1 {
        font-size: 4rem;
        white-space: nowrap;
    }

    .hero-subtitle-inline {
        display: inline;
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 2.8rem;
    }

    .hero-list {
        flex-direction: row;
        font-size: 18px;
        gap: 2rem;
        justify-content: flex-start;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 0;
    }

    .hero-buttons .btn {
        width: auto;
        padding: 1.1rem 2.4rem;
        font-size: 18px;
    }

    .hero-drone {
        justify-content: flex-end;
    }

    .hero-drone img {
        max-width: 500px; /* Desktop size */
    }

    /* --- WHY SECTION --- */
    .why {
        padding: 6rem 1rem;
    }

    .why-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
        padding: 0 1rem;
    }

    .why-card-img {
        flex: 1;
        min-width: 0;
        width: auto;
        max-width: none;
        height: auto;
        border-radius: 12px;
        transition: all 0.3s;
        transform: scaleX(1.5);
        transform-origin: center;
    }

    .why-card-img:nth-child(5) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    .why-card-img:hover {
        transform: scaleX(1.5) translateY(-10px);
    }

    /* --- HOW IT WORKS SECTION --- */
    .how-it-works {
        padding: 6rem 3rem;
    }

    .how-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .how-card {
        flex: 0 1 calc(33.333% - 1.5rem);
        max-width: calc(33.333% - 1.5rem);
    }

    /* Last 2 cards centered */
    .how-card:nth-child(4),
    .how-card:nth-child(5) {
        flex: 0 1 calc(33.333% - 1.5rem);
        max-width: calc(33.333% - 1.5rem);
    }

    /* --- CONTACT SECTION --- */
    .contact {
        padding: 6rem 3rem;
    }

    .contact-inner {
        max-width: 550px;
    }

    .btn-submit {
        width: auto;
        padding: 1rem 3rem;
    }

    /* --- FAQ SECTION --- */
    .faq {
        padding: 6rem 3rem;
    }

    /* --- FOOTER --- */
    .footer {
        padding: 4rem 3rem 2rem;
    }

    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: auto;
        text-align: left;
    }

    .footer-col:last-child {
        grid-column: auto;
    }

    .footer-col h4 {
        font-size: 1.1rem;
    }

    .footer-col ul li {
        font-size: 1rem;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-logo {
        height: 80px;
    }

    /* WhatsApp groter op desktop */
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        bottom: 25px;
        right: 25px;
    }

    .whatsapp-btn svg {
        width: 32px;
        height: 32px;
    }
}

/* ==========================================================================
   Privacy Page
   ========================================================================== */
.privacy-page {
    padding: 8rem 1.5rem 4rem;
    background: url('../images/3.png') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
}

.privacy-inner {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-page h1 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.privacy-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.privacy-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.privacy-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5dd3c6;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-content ul {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-content ul li {
    margin-bottom: 0.5rem;
}

.privacy-content ul.contact-info {
    list-style: none;
    padding-left: 0;
}

.back-btn {
    display: inline-block;
}

@media (min-width: 768px) {
    .privacy-page {
        padding: 10rem 3rem 6rem;
    }

    .privacy-page h1 {
        font-size: 3rem;
    }

    .privacy-content {
        padding: 3rem;
    }
}
