:root {
    --primary: #c5a059;
    --dark: #2d2d2d;
    --light: #f9f7f2;
    --text: #4a4a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--light);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin-left: auto;
    justify-content: flex-end;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero {
    min-height: 65vh;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('images/homepage.webp') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero h1 span {
    color: var(--primary);
}

.hero h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #e0dcd5;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 10px 26px;
    margin-left: 10px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}

.section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card h3 {
    padding: 20px 20px 10px;
}

.card p {
    padding: 0 20px;
    font-size: 0.9rem;
    color: #777;
}

.trust-bar {
    background: var(--dark);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    font-weight: 600;
}

.about-section {
    padding: 100px 5%;
    background-color: white;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 0 var(--primary);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--dark);
    color: white;
    padding: 15px 25px;
    font-weight: bold;
    border-radius: 4px;
}

.about-text {
    flex: 1;
}

.section-title-left {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.lead-text {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.signature {
    margin: 30px 0;
    font-style: italic;
}

.signature .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
    font-style: normal;
}

/* ==========================================================================
   🖋️ UPGRADED PREMIUM TRAVEL DESIGN BOOKING FORM STYLES
   ========================================================================== */
.enquiry-section {
    padding: 80px 5%;
    background-color: var(--light);
}

.enquiry-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.enquiry-header {
    text-align: center;
    margin-bottom: 40px;
}

.enquiry-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.safari-booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row {
    display: flex;
    width: 100%;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.full-width {
    width: 100% !important;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 14px;
    border: 1px solid #e0dcd5;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    color: var(--dark);
    transition: border-color 0.3s;
    width: 100%;
}

.form-group select {
    height: 50px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 5px;
    width: 100%;
}

.cb-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light);
    padding: 14px;
    border: 1px solid #e0dcd5;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500 !important;
    font-size: 0.9rem;
    user-select: none;
    color: var(--dark);
}

.cb-card input {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #af8d4a;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    width: 100%;
}

/* ==========================================================================
   🗺️ DESTINATIONS GRID AND ITINERARIES INTERACTION STYLE
   ========================================================================== */
.destinations-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 20px;
    width: 95% !important;
    max-width: 1800px !important;
    margin: 40px auto !important;
    padding: 0 !important;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
}

.iframe-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block !important;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

.destination-card {
    text-align: center;
}

.price-promise-bar {
    background-color: #f9f6f2;
    padding: 50px 0;
    border-top: 1px solid #e0dcd5;
    border-bottom: 1px solid #e0dcd5;
    margin: 40px 0;
    width: 100%;
}

.promise-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 40px;
    gap: 25px;
}

.promise-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promise-icon {
    background-color: #c19a6b;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.promise-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.promise-item p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.promise-btn-outline {
    background: transparent;
    border: 2px solid #c19a6b;
    color: #c19a6b;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.promise-btn-outline:hover {
    background-color: #c19a6b;
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.submit-btn {
    width: 100%;
    background-color: #c19a6b;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-color: #a8855a;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
}

.itinerary-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e0dcd5;
}

.itinerary-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--dark);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 2;
}

.itinerary-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.itinerary-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.itinerary-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.itinerary-duration {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.itinerary-details p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-itinerary {
    text-align: center;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-itinerary:hover {
    background: var(--primary);
    color: #fff;
}

.offer-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.offer-modal-overlay.show-modal {
    opacity: 1;
    pointer-events: auto;
}

.offer-modal-box {
    background-color: #ffffff;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    padding: 50px 35px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.4s ease;
    border: 10px solid transparent;
    border-image: repeating-linear-gradient(45deg,#b30000,#b30000 15px,var(--primary) 15px,var(--primary) 30px) 1;
    box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}

.festive-gothic-title {
    font-family: 'UnifrakturMaguntia','Garamond','New York',serif;
    font-size: 2.3rem;
    font-weight: normal;
    color: var(--primary);
    letter-spacing: 1px;
    margin-top: 5px;
    margin-bottom: 15px;
    text-align: center;
    text-transform: none;
}

.offer-modal-overlay.show-modal .offer-modal-box {
    transform: translateY(0);
}

.offer-modal-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    z-index: 10;
}

.offer-tag {
    display: inline-block;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.offer-modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.offer-dates {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 15px;
}

.offer-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-price-box {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 12px 15px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.offer-actions {
    display: flex;
    gap: 15px;
}

.offer-actions .btn-primary {
    flex: 1;
    text-align: center;
    padding: 12px;
}

.btn-secondary-dark {
    flex: 1;
    text-align: center;
    border: 2px solid var(--dark);
    color: var(--dark);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    padding: 10px;
    transition: 0.3s;
}

.btn-secondary-dark:hover {
    background-color: var(--dark);
    color: #ffffff;
}

/* ==========================================================================
   🧱 FOOTER LAYOUT ELEMENTS
   ========================================================================== */
.main-footer {
    background-color: #1a1a1a;
    padding: 60px 0 20px 0;
    width: 100%;
}

.footer-centered-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 40px;
    justify-content: center;
}

.footer-brand {
    flex: 2;
    text-align: left;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
}

.footer-links, .footer-contact {
    flex: 1;
    text-align: left;
}

.footer-links h4, .footer-contact h4 {
    color: #c19a6b;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    border-bottom: 2px solid #c9a054;
    padding-bottom: 5px;
    display: inline-block;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #bbb;
}

.pts-badge {
    display: inline-block;
    border: 1px solid #c19a6b;
    color: #c19a6b;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-logo {
    max-width: 90px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

.footer-bottom a {
    color: #777;
    text-decoration: none;
}

.trust-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.pts-badge-img {
    max-width: 85px;
    height: auto;
    display: block;
}

.social-icon-img {
    width: 32px;
    height: 32px;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-icon-link:hover .social-icon-img, .footer-icon-link:hover .pts-badge-img {
    transform:scale(1.08);
    opacity:0.9;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    visibility: hidden;
    width: 140px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    right: 120%;
    bottom: 10px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(10px);
    font-family: sans-serif;
    font-size: 14px;
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.slideshow-container a img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slideshow-container a:hover img {
    transform: scale(1.02);
}

.safari-card-link {
    cursor: pointer;
}

.safari-card-link div img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safari-card-link:hover div img {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.2);
}

.safari-card-link:hover p span:last-child {
    text-decoration: underline;
}

/* ==========================================================================
   🖼️ TRUE PARALLAX CONTENT STRIP SEPARATOR RULES
   ========================================================================== */
.parallax-divider {
    min-height: 400px;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('images/namibia/namibia9.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.parallax-divider h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    max-width: 800px;
    line-height: 1.3;
}

/* ==========================================================================
   📱 RESPONSIVE MEDIA BREAKPOINTS ENGINE
   ========================================================================== */
@media (max-width: 1024px) {
    .promise-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 20px;
    }
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        margin-top: 20px;
        margin-left: 0;
        padding: 0;
    }
    .nav-links li {
        margin-left: 0 !important;
        margin-bottom: 15px;
        width: 100%;
        text-align: left;
    }
    .nav-links a, .header-phone {
        font-size: 1rem !important;
        display: block;
        width: 100%;
        padding: 5px 0;
    }
    .navbar .btn-primary {
        display: inline-block !important;
        width: auto !important;
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
    .burger {
        display: none !important;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-image img {
        box-shadow: 10px 10px 0 var(--primary);
    }
    .experience-badge {
        right: 0;
        left: 0;
        margin: 0 auto;
        width: fit-content;
    }
    .destinations-grid {
        grid-template-columns: 1fr !important;
        width: 90% !important;
    }
    .itinerary-grid {
        grid-template-columns: 1fr !important;
    }
    .promise-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 20px;
    }
    .promise-text {
        flex-direction: column;
    }
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* 📱 Disables parallax processing on mobile for browser rendering stability */
    .parallax-divider {
        background-attachment: scroll !important;
        min-height: 250px;
    }
}

@media (max-width: 650px) {
    .itinerary-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .itinerary-card {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    .enquiry-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px;
        box-sizing: border-box;
        height: auto;
    }
    .logo {
        font-size: 1.2rem;
        white-space: nowrap;
        margin-bottom: 5px;
    }
    .header-phone {
        font-size: 13px !important;
        white-space: nowrap;
    }
    .navbar .btn-primary {
        padding: 8px 16px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }
    .trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    .hero {
        padding: 40px 10px !important;
    }
    .hero h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        white-space: normal !important;
    }
    .hero p {
        font-size: 0.85rem !important;
        white-space: normal !important;
    }
    .hero-btns {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .promise-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 40px;
    }
    .promise-item {
        width: 100%;
    }
    .offer-modal-box {
        padding: 30px 20px;
    }
    .offer-modal-content h2 {
        font-size: 1.5rem;
    }
    .offer-actions {
        flex-direction: column;
        gap: 10px;
    }
    .footer-centered-wrapper {
        padding: 0 20px;
    }
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}