/* 
  Dental AI Landing Page Design System
  Strictly following the provided visual reference.
*/

:root {
    --bg-color: #000000;
    --text-primary: #FFFFFF;
    --primary-blue: #00D2FF;
    --secondary-fuchsia: #FF00FF;
    --accent-turquoise: #00F5FF;
    --font-main: 'Open Sans', sans-serif;
    --font-heading: 'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Base styles for CTA buttons (to be refined per section) */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-turquoise));
    color: var(--bg-color);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-turquoise);
    color: var(--accent-turquoise);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    width: 100%;
}

.hero {
    padding: 40px 0;
    justify-content: center;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-visual {
    flex: 0 0 45%;
}

.logo-wrapper {
    margin-bottom: 40px;
}

.logo {
    max-width: 364px;
}

.eyebrow {
    font-size: 2.53rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 800;
}

.main-title {
    font-size: 2.875rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(90deg, #FF00FF 0%, #00D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.blue-text {
    color: #00D2FF;
}

.description {
    font-size: 1.61rem;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.btn-audit {
    background-color: #083ab9;
    color: white;
    font-size: 0.9rem;
    padding: 15px 30px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 0.9rem;
    padding: 15px 30px;
}

.hero-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .hero-visual {
        flex: 0 0 100%;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
    }
}

/* Section Common */
.column-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-size: 2.53rem;
    margin-bottom: 30px;
}

.fuchsia-text {
    color: #FF00FF;
}

.turquoise-text {
    color: #00D2FF;
}

/* Section 2: Problem Awareness */
.problem-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.problem-card {
    flex: 1;
    height: 450px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-1 {
    background-image: url('clinic-card-repeat.jpeg');
}

.card-2 {
    background-image: url('clinic-card-middle.jpeg');
}

.card-3 {
    background-image: url('clinic-card-repeat.jpeg');
}

.card-overlay {
    background-color: #083ab9;
    width: 80%;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: left;
}

.card-overlay h3 {
    font-size: 2.07rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 400;
}

.card-overlay p {
    font-size: 1.1rem;
    line-height: 1.4;
}

.section-footer-text {
    font-size: 2.07rem;
    font-weight: 400;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section 3: Real Problem */
.real-problem {
    background-image: url('clinic-bg-3.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.real-problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.real-problem .container {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 2.07rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.comparison-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 30px;
}

.comparison-box {
    flex: 1;
    background: rgba(255, 0, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    text-align: left;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.box-header h3 {
    font-size: 2.3rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.icon-x,
.icon-check {
    width: 50px;
    height: 50px;
    background: #083ab9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.box-list {
    list-style: none;
    margin-bottom: 40px;
}

.box-list li {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.box-footer {
    font-size: 1.3rem;
    font-style: italic;
}

.section-bottom-text,
.section-bottom-info {
    font-size: 2.07rem;
    line-height: 1.3;
}

/* Section 4: Process */
.process-grid {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    margin-bottom: 15px;
}

.step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background-color: #FF00FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-text {
    font-size: 1.61rem;
    font-weight: 700;
    color: #FF00FF;
}

/* Section 5: Capabilities */
.capabilities {
    background-image: url('seccion5.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.capabilities .container {
    position: relative;
    z-index: 2;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.capability-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 30px 25px;
    text-align: left;
    color: #333333;
    border-radius: 4px;
}

.capability-card h3 {
    font-size: 1.84rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
    font-family: var(--font-main);
    font-weight: 400;
}

.capability-card p {
    font-size: 1.2rem;
    line-height: 1.3;
}

.section-tagline {
    font-size: 2.07rem;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 900px) {

    .problem-grid,
    .comparison-container,
    .process-grid,
    .capabilities-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        align-items: center;
    }

    .problem-card,
    .comparison-box,
    .process-step {
        width: 100%;
        max-width: 500px;
    }
}

/* Section 6: Transformation */
.transformation {
    background-image: url('seccion6.jpeg');
    /* Clinical background */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 40px 0;
}

.transformation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.transformation .container {
    position: relative;
    z-index: 2;
}

.transformation-box-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-box {
    background: rgba(255, 0, 255, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 40px 30px;
    text-align: left;
    width: 100%;
    border: 1px solid rgba(255, 0, 255, 0.3);
    z-index: 3;
}

.benefit-item {
    margin-bottom: 20px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item h3 {
    font-size: 2.3rem;
    color: #FFFFFF;
    margin-bottom: 5px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 1.84rem;
    color: #FFFFFF;
    line-height: 1.2;
}

.wave-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 300px;
    background-image: url('waves.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
}

.section-conclusion {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .benefits-box {
        padding: 40px 30px;
    }

    .benefit-item h3 {
        font-size: 1.6rem;
    }

    .benefit-item p {
        font-size: 1.2rem;
    }
}

/* Section 7: Final CTA */
.final-cta {
    padding: 40px 0;
}

.final-cta .section-subtitle {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.84rem;
    margin-bottom: 20px;
}

.cta-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
}

.cta-img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.cta-button-overlay {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.final-cta .btn-audit {
    font-size: 1.1rem;
    padding: 18px 40px;
    box-shadow: 0 10px 30px rgba(8, 58, 185, 0.4);
}

@media (max-width: 768px) {
    .cta-button-overlay {
        position: relative;
        top: 0;
        transform: none;
        padding: 20px 0;
    }
}

/* Section 8: Bio & Footer */
.bio-footer {
    background-color: #000;
    padding: 40px 0 20px 0;
}

.bio-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.bio-visual {
    flex: 0 0 400px;
}

.bio-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.bio-content {
    flex: 1;
    text-align: left;
}

.bio-title {
    font-size: 2.53rem;
    color: #FF00FF;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: none;
    /* Exactly as in design */
}

.bio-text p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.bio-text strong {
    color: #FFFFFF;
    font-weight: 800;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    transition: transform 0.3s ease;
}

.social-icon.ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.fb {
    background-color: #1877F2;
}

.social-icon.yt {
    background-color: #FF0000;
}

.social-icon.ln {
    background-color: #0077B5;
    border-radius: 4px;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.contact-details {
    display: flex;
    gap: 40px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #00D2FF;
}

.contact-icon {
    font-size: 1.6rem;
    width: 40px;
    height: 40px;
    border: 1px solid #00D2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon.phone {
    border-color: #FF00FF;
}

.contact-icon.email {
    border-color: #00D2FF;
}

.contact-icon.map {
    border-color: #00D2FF;
}

@media (max-width: 992px) {
    .bio-container {
        flex-direction: column;
        align-items: center;
    }

    .bio-visual {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .bio-content {
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
    }

    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.modal-content {
    background-color: #0c1222;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    z-index: 10;
}

.close-modal:hover {
    color: #fff;
}

/* Form Styling */
.audit-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label,
.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #f8fafc;
}

.form-group input,
.form-group textarea {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 10px 14px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00D2FF;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

/* Services section */
.services-selection {
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.service-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #cbd5e1;
    transition: all 0.2s;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    background: rgba(51, 65, 85, 0.4);
}

.service-card.selected {
    border-color: #00D2FF;
    background: rgba(0, 210, 255, 0.1);
    color: #fff;
}

/* Submit section */
.form-submit {
    margin-top: 10px;
    text-align: center;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg, #083ab9 0%, #FF00FF 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 15px;
}

.legal-text {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 500px) {

    .form-row,
    .services-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .modal-content {
        padding: 20px;
    }
}

/* --- Chatbot Widget Styles --- */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10001;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D2FF 0%, #FF00FF 100%);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 255, 0.4);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(15, 15, 25, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.chat-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.chat-header {
    padding: 15px 20px;
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.2), rgba(255, 0, 255, 0.2));
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.header-text {
    display: flex;
    flex-direction: column;
}

.header-name {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.header-status {
    font-size: 11px;
    color: #00F5FF;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.chat-close:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.message.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 2px;
}

.message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, #00D2FF, #083ab9);
    color: white;
    border-bottom-right-radius: 2px;
}

.chat-input-form {
    padding: 15px;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    outline: none;
}

.chat-send-btn {
    background: #00D2FF;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.chat-send-btn:hover {
    background: #FF00FF;
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
        bottom: 80px;
    }
}

/* --- Legal & GDPR Styles --- */
.footer-legal-row {
    justify-content: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 100%;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-blue);
}

.gdpr-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.gdpr-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.gdpr-group label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.gdpr-group label a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--primary-blue);
    padding: 20px 0;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    font-size: 0.95rem;
    color: #fff;
}

.cookie-content a {
    color: var(--accent-turquoise);
    text-decoration: underline;
}

.btn-accept {
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-turquoise));
    color: #000;
    padding: 8px 25px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        order: 3;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}