/* Variables */
:root {
    --primary-blue: #0055A4;
    --secondary-orange: #FF6B00;
    --accent-teal: #00A89C;
    --bg-light: #F3F6FA;
    --white: #FFFFFF;
    --dark-text: #1E2A41;
    --light-text: #5E6F88;
    --success-green: #28A745;
    --gold: #FFB800;
    --border-color: #E2E8F0;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Reset / Base (Classes only) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* General Formatting Typography */
.text-center {
    text-align: center;
}

.mb-15 {
    margin-bottom: 15px;
}

.highlight-orange {
    color: var(--secondary-orange);
}

.highlight-bold {
    font-weight: 800;
    color: var(--dark-text);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--secondary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e66000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.loader-logo i {
    color: var(--secondary-orange);
    margin: 0 2px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-light);
    border-top: 4px solid var(--secondary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-text);
    color: var(--white);
    padding: 15px 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    font-size: 14px;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* Ad Bar */
.ad-bar {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: var(--light-text);
}

.ad-text {
    margin: 0;
}

/* Header */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: var(--shadow-sm);
    transition: padding 0.3s ease;
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo-icon {
    color: var(--secondary-orange);
    font-size: 20px;
    margin: 0 3px;
}

.desktop-nav {
    display: flex;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-orange);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-text);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-logo {
    font-size: 20px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-text);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    margin: 0;
    padding: 0;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-footer {
    margin-top: auto;
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 168, 156, 0.1) 0%, rgba(243, 246, 250, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--white);
    color: var(--dark-text);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.hero-badge i {
    color: var(--gold);
    margin-right: 5px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image-wrapper {
    flex: 1;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Trust Badges */
.trust-badges {
    background-color: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars i {
    color: var(--gold);
}

.trust-rating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
}

.trust-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    color: var(--accent-teal);
    font-size: 18px;
}

.trust-feature-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-text);
}

/* Sections Base */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 50px;
}

/* Products */
.products {
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-orange);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-komfort {
    border: 2px solid var(--secondary-orange);
}

.card-basis .product-title {
    color: var(--primary-blue);
}

.card-komfort .product-title {
    color: var(--secondary-orange);
}

.card-rundum .product-title {
    color: var(--accent-teal);
}

.product-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.product-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-text);
    margin-bottom: 25px;
}

.price-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--light-text);
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
    padding: 0;
}

.feature-item {
    font-size: 15px;
    color: var(--dark-text);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    color: var(--success-green);
    margin-top: 3px;
}

.feature-missing {
    color: var(--light-text);
    text-decoration: line-through;
}

.feature-icon-missing {
    color: #A0AEC0;
    margin-top: 3px;
}

.product-footer {
    margin-top: auto;
}

.btn-outline-basis {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline-basis:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-outline-rundum {
    background-color: transparent;
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
}

.btn-outline-rundum:hover {
    background-color: var(--accent-teal);
    color: var(--white);
}

/* Savings Highlight */
.savings-highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003b73 100%);
    padding: 40px 0;
}

.savings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.savings-badge {
    background-color: var(--secondary-orange);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.savings-percent {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.savings-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.savings-text-wrapper {
    color: var(--white);
}

.savings-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.savings-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.savings-code {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: monospace;
    font-size: 20px;
}

/* Why Us */
.why-us {
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 168, 156, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon {
    font-size: 30px;
    color: var(--accent-teal);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.benefit-text {
    font-size: 15px;
    color: var(--light-text);
}

/* How It Works */
.how-it-works {
    background-color: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.step-card {
    text-align: center;
    flex: 1;
    z-index: 2;
    padding: 0 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.1);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.step-text {
    font-size: 16px;
    color: var(--light-text);
}

.step-line {
    flex: 1;
    height: 2px;
    background-color: var(--border-color);
    margin-top: 30px;
    z-index: 1;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-blue);
}

/* FAQ */
.faq {
    background-color: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background-color: var(--white);
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    color: var(--secondary-orange);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: var(--bg-light);
}

.faq-answer-content {
    padding: 0 20px 20px;
    color: var(--light-text);
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background-color: var(--bg-light);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* About */
.about {
    background-color: var(--bg-light);
}

.about-content-wrapper {
    display: flex;
    gap: 60px;
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.about-text-content {
    flex: 2;
}

.about-text {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.about-mission {
    background-color: rgba(0, 168, 156, 0.1);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.mission-icon {
    font-size: 24px;
    color: var(--accent-teal);
}

.mission-text {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 16px;
}

.about-contact {
    flex: 1;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.contact-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-detail {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    color: var(--secondary-orange);
}

.contact-link {
    color: var(--white);
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 15px;
    display: inline-flex;
}

.text-white {
    color: var(--white);
}

.footer-desc {
    color: #A0AEC0;
    font-size: 14px;
}

.footer-contact-info p {
    color: #A0AEC0;
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-contact-info strong {
    color: var(--white);
    font-weight: 700;
}

.footer-link-text {
    color: #A0AEC0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link-text:hover {
    color: var(--secondary-orange);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link-item {
    margin-bottom: 10px;
}

.footer-link-btn {
    background: none;
    border: none;
    color: #A0AEC0;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    padding: 0;
    transition: color 0.3s ease;
}

.footer-link-btn:hover {
    color: var(--secondary-orange);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-text {
    color: #718096;
    font-size: 12px;
    margin-bottom: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    text-align: center;
}

.copyright {
    color: #718096;
    font-size: 14px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 800;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-5px);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    background-color: var(--white);
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-dialog {
    transform: translateY(0);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--light-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--secondary-orange);
}

.modal-body {
    padding: 20px;
    line-height: 1.6;
    color: var(--dark-text);
}

.modal-body p {
    margin-bottom: 15px;
}

/* ========================================= */
/* RESPONSIVE RULES                          */
/* ========================================= */

/* Tablet (768px - 992px) */
@media (max-width: 992px) {

    .products-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .savings-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content-wrapper {
        flex-direction: column;
    }
}

/* Mobile (<768px) */
@media (max-width: 768px) {

    .section-container,
    .hero-container,
    .trust-container,
    .header-container,
    .savings-container,
    .footer-container,
    .footer-disclaimer,
    .footer-bottom {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-large {
        width: 100%;
    }

    .trust-rating {
        width: 100%;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .trust-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
        padding-left: 10%;
    }

    .products-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

    .step-line {
        width: 2px;
        height: 40px;
        margin: -20px auto;
    }

    .savings-badge {
        width: 90px;
        height: 90px;
    }

    .savings-percent {
        font-size: 32px;
    }

    .savings-title {
        font-size: 24px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}