/* Sponge Bent - Modern Clean Design */

/* Объявление шрифта */
@font-face {
font-family: 'Montserrat';
src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Montserrat';
src: url('/fonts/Montserrat-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Montserrat';
src: url('/fonts/Montserrat-SemiBold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Montserrat';
src: url('/fonts/Montserrat-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Montserrat';
src: url('/fonts/Montserrat-ExtraBold.ttf') format('truetype');
font-weight: 800;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Montserrat';
src: url('/fonts/Montserrat-Black.ttf') format('truetype');
font-weight: 900;
font-style: normal;
font-display: swap;
}

:root {
    --primary: #90C4C0;
    --primary-dark: #6b9794;
    --accent: #90C4C0;
    --accent-light: #C9E3E1;
    --accent-lighter: #ddf5f3;
    --bg-light: #FAFCFE;
    --bg-white: #FFFFFF;
    --text: #2C4E50;
    --text-light: #597a7c;
    --border: #D8E6EF;
    --shadow-sm: none;
    --shadow-md: none;
    --radius: 6px;
    --radius-sm: 4px;
    --transition: 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--bg-light);
    line-height: 1.6;
    font-weight: 500;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Header - Fixed, taller */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    padding: 20px 0;
    height: 90px;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 35px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.logo span { color: var(--primary-dark); }

.logo-icon {
    height: 40px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

nav {
    display: flex;
    gap: 36px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    padding: 10px 0;
    position: relative;
}

nav a:hover { color: var(--primary-dark); }

nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.2s;
}

nav a:hover::after { width: 100%; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}

.btn-gold {
    background: #F59E0B;
    color: white;
}

.btn-gold:hover {
    background: #D97706;
    transform: translateY(-1px);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    background: #FFFFFF;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: -1px;
}

.hero h1 span { color: var(--primary-dark); }

.hero-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item { text-align: left; }

.stat-number {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 670px;
    border-radius: var(--radius);
}
.phone-image {
    width: 100%;
    max-width: 25px;
}

/* Products on hero */
.hero-products {
    position: absolute;
    bottom: 60px;
    left: -60px;
    display: flex;
    gap: 12px;
}

.hero-product {
    background: white;
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid var(--border);
}

.hero-product-icon {
    font-size: 36px;
    margin-bottom: 6px;
}

.hero-product-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
}

.floating-card-1 { top: 15%; right: -30px; }
.floating-card-2 { bottom: 25%; left: -20px; }

.floating-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.floating-text h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.floating-text p {
    font-size: 11px;
    color: var(--text-light);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* Products */
.products {
    padding: 80px 0;
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.product-card.featured {
    background: var(--text);
    color: white;
    border: none;
}

.product-card.featured .product-desc { color: rgba(255,255,255,0.7); }

.product-badge {
    position: absolute;
    top: -10px;
    left: 28px;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card.featured .product-badge {
    background: #F59E0B;
    color: var(--text);
}

.product-icon {
    /*width: 70px;
    height: 70px;*/
    background: var(--accent-lighter);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 22px;
}

.product-card.featured .product-icon {
    background: rgba(255,255,255,0.1);
}

.product-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-desc {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 22px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 28px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.product-card.featured .product-features li {
    border-color: rgba(255,255,255,0.1);
}

.feature-check {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    flex-shrink: 0;
}

.product-card.featured .feature-check {
    background: #F59E0B;
    color: var(--text);
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
}

.product-card.featured .product-price { color: #F59E0B; }

.product-price span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
}

/* Comparison */
.comparison {
    padding: 80px 0;
    background: #FAFCFE;
}

.comparison-table {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--primary);
    color: white;
}

.table-header-cell {
    padding: 22px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.table-header-cell:first-child {
    text-align: left;
    padding-left: 26px;
}

.table-header-cell.highlight { background: var(--primary-dark); }

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.table-row:last-child { border-bottom: none; }
.table-row:hover { background: var(--accent-lighter); }

.table-cell {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.table-cell:first-child {
    padding-left: 26px;
    font-weight: 600;
}

.table-cell:not(:first-child) { justify-content: center; }

.table-cell .check { color: #10B981; font-size: 22px; font-weight: bold; }
.table-cell .cross { color: #EF4444; font-size: 22px; font-weight: bold; }
.table-cell .partial { color: #F59E0B; font-size: 16px; font-weight: 600; }

.highlight-cell {
    background: var(--accent-light);
    font-weight: 600;
    color: var(--primary-dark);
}

.comparison-note {
    text-align: center;
    margin-top: 22px;
    color: var(--text-light);
    font-size: 13px;
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 26px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: #FFF;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.review-card:hover { border-color: var(--accent); }

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    font-weight: 700;
}

.review-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.review-stars {
    color: #F59E0B;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* CTA */
.cta {
    padding: 80px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-form {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7C8A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    width: 100%;
    border-radius: var(--radius);
}

/* Footer */
footer {
    background: var(--text);
    color: white;
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 44px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--accent-light); }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-content { order: 2; }
    .hero-visual { order: 1; }
    .hero-text { margin: 0 auto 28px; }
    .hero-buttons, .hero-stats { justify-content: center; }
    .hero-products { display: none; }
    .floating-card { display: none; }
    .features-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
    }

@media (max-width: 768px) {
    .hero h1 { font-size: 38px; }
    .section-title { font-size: 30px; }
    nav { display: none; }
    .mobile-menu-btn { display: block; }
    .products-grid { grid-template-columns: 1fr; }
    .table-header, .table-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; font-size: 12px; }
    .table-cell, .table-header-cell { padding: 14px 10px; }
    .features-grid, .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .cta h2 { font-size: 30px; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
/* Добавьте к существующему стилю */

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    margin-right: 24px;
    transition: color 0.2s;
}

.header-phone:hover {
    color: var(--primary-dark);
}

.header-phone-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Hover effects for floating cards */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-visual:hover .floating-card-1 {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-visual:hover .floating-card-2 {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.floating-card-1 {
    top: 15%;
    right: -30px;
}

.floating-card-2 {
    bottom: 25%;
    left: -20px;
}

/* Always visible by default (restore original behavior) */
.floating-card {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text);
    padding: 8px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--primary-dark);
}

.mobile-nav .btn {
    width: 100%;
    margin-top: 16px;
    justify-content: center;
}

.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-group { margin-bottom: 25px; }
        label { display: block; margin-bottom: 8px; color: #333; font-weight: 600; }
        input, select { width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 16px; }
        input:focus, select:focus { outline: none; border-color: #667eea; }
        .captcha-group { display: flex; gap: 15px; align-items: center; }
        .captcha-question { background: #f0f0f0; padding: 12px 20px; border-radius: 8px; font-weight: bold; font-size: 18px; }
        .captcha-input { flex: 1; }
        /* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-content { order: 2; }
    .hero-visual { order: 1; }
    .hero-text { margin: 0 auto 28px; }
    .hero-buttons, .hero-stats { justify-content: center; }
    .hero-products { display: none; }
    .floating-card { display: none; }
    .features-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
    
}

@media (max-width: 768px) {
    .hero h1 { font-size: 38px; }
    .section-title { font-size: 30px; }
    nav { display: none; }
    .header-phone { display: none; }
    .mobile-menu-btn { display: block; }
    .products-grid { grid-template-columns: 1fr; }
    .table-header, .table-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; font-size: 12px; }
    .table-cell, .table-header-cell { padding: 14px 10px; }
    .features-grid, .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .cta h2 { font-size: 30px; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e7a;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
  min-width: 280px;
}

.cookie-banner-text a {
  color: #4fc3f7;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s, transform 0.1s;
}

.cookie-btn-accept {
  background: #6b9794;
  color: white;
}

.cookie-btn-accept:hover {
  background: #90C4C0;
}

.cookie-btn-decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

@media (max-width: 600px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}