/* ========================================
   VARIABILI E RESET
   ======================================== */

:root {
    --primary: #1A7A7A;
    --primary-dark: #146363;
    --secondary: #7FBFBF;
    --secondary-dark: #5EAAAA;
    --background: #F5FAFA;
    --background-alt: #E8F4F4;
    --text: #2D4A4A;
    --text-light: #4A6B6B;
    --accent: #D4B896;
    --white: #FFFFFF;
    --shadow: rgba(26, 122, 122, 0.1);
    --shadow-strong: rgba(26, 122, 122, 0.15);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', Arial, sans-serif;

    --transition: all 0.3s ease;
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--background);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
    text-align: justify;
}

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

/* ========================================
   HEADER
   ======================================== */

.header {
    background-color: var(--white);
    padding: 19px 0;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-contatti {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
}

.logo-testo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
    margin-top: 4px;
}

.logo-nome {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-titolo {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contatti-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.contatto-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 1.06rem;
}

.contatto-item:hover {
    color: var(--primary);
}

.contatto-item .icona {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ========================================
   NAVIGAZIONE
   ======================================== */

.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    flex-wrap: nowrap;
}

.nav-link {
    display: block;
    padding: 19px 12px;
    color: var(--text);
    font-weight: 400;
    font-size: 1.06rem;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 35vh;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="0.5"/></svg>');
    background-size: 100px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    text-align: center;
}

.hero p {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ========================================
   BOTTONI
   ======================================== */

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--background);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow-strong);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* ========================================
   SEZIONE BENESSERE
   ======================================== */

.benessere {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
}

.benessere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="0.5"/></svg>');
    background-size: 100px;
    opacity: 0.5;
    pointer-events: none;
}

.benessere .container {
    position: relative;
    z-index: 1;
}

.benessere-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benessere-testo h1,
.benessere-testo h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* H1 con stile visivo di H2 (per SEO) */
.benessere-testo h1 {
    font-size: 2.5rem;
}

.benessere-testo p {
    text-align: justify;
    color: var(--white);
}

.benessere-immagine {
    display: flex;
    justify-content: center;
}

.benessere-immagine img {
    width: 70%;
    height: auto;
    border-radius: var(--border-radius);
}

.immagine-placeholder {
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--background) 100%);
    border: 2px dashed var(--accent);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--text-light);
    font-weight: 500;
}

.immagine-placeholder small {
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0.7;
}

.immagine-placeholder.piccola {
    min-height: 180px;
}

/* ========================================
   CHI SONO
   ======================================== */

.chi-sono {
    padding: 100px 0;
    background-color: var(--background);
}

.chi-sono-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.chi-sono-foto img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.foto-placeholder {
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--white) 100%);
    border: 2px dashed var(--accent);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--text-light);
    font-weight: 500;
}

.chi-sono-testo h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.credenziali {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--accent);
}

.credenziale {
    text-align: center;
}

.credenziale .numero {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.credenziale .label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ========================================
   SERVIZI
   ======================================== */

.servizi {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.servizi h2 {
    color: var(--primary);
}

.sezione-sottotitolo {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.servizi-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 2rem;
}

.servizio-card {
    flex: 0 1 calc(33.333% - 20px);
}

.servizio-card {
    background-color: var(--background);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.servizio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.servizio-icona {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.servizio-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.servizio-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
    text-align: center;
}

/* ========================================
   IL MIO APPROCCIO
   ======================================== */

.approccio {
    padding: 100px 0;
    background-color: var(--background);
}

.approccio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approccio-immagine {
    display: flex;
    justify-content: center;
}

.approccio-immagine img {
    width: 60%;
    height: auto;
    border-radius: var(--border-radius);
}

.approccio-testo h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.approccio-lista-inline {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.approccio-lista-inline li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.approccio-lista-inline li span:not(.check) {
    text-align: justify;
}

.approccio-lista-inline .check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.approccio-lista {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.approccio-lista li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
}

.approccio-lista li span:not(.check) {
    text-align: justify;
}

.approccio-lista .check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================
   ARTICOLI
   ======================================== */

.articoli {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.articoli h2 {
    color: var(--primary);
}

.articoli-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
    text-align: left;
}

.articolo-card {
    background-color: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.articolo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.articolo-contenuto {
    padding: 25px;
}

.articolo-data {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.articolo-card h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.articolo-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.leggi-altro {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.leggi-altro:hover {
    color: var(--primary-dark);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.cta-section p {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   PAGINA ARTICOLO
   ======================================== */

.articolo-pagina {
    padding: 60px 0 100px;
    background-color: var(--background);
}

.articolo-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.torna-indietro {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.torna-indietro:hover {
    color: var(--primary-dark);
}

.articolo-header .articolo-data {
    display: block;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.articolo-header h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.articolo-sottotitolo {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.articolo-corpo {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    text-align: justify;
}

.articolo-corpo h2 {
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.articolo-corpo h3 {
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.articolo-corpo p {
    margin-bottom: 1.5rem;
}

.articolo-corpo ul,
.articolo-corpo ol {
    margin: 0.5rem 0 1rem;
    padding-left: 1.5rem;
}

.articolo-corpo ul li,
.articolo-corpo ol li {
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.articolo-corpo img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.articolo-corpo img[style*="float: left"],
.articolo-corpo img[align="left"] {
    margin: 0.5rem 1.5rem 1rem 0;
}

.articolo-corpo img[style*="float: right"],
.articolo-corpo img[align="right"] {
    margin: 0.5rem 0 1rem 1.5rem;
}

.articolo-corpo::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .articolo-corpo img[style*="float: left"],
    .articolo-corpo img[align="left"],
    .articolo-corpo img[style*="float: right"],
    .articolo-corpo img[align="right"] {
        float: none !important;
        display: block;
        margin: 1rem auto;
    }
}

.articolo-cta {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--border-radius);
    text-align: center;
}

.articolo-cta h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.articolo-cta p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

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

.btn-secondary-dark:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--text);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: center;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ========================================
   PAGINAZIONE ARTICOLI
   ======================================== */

.paginazione {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.pagina-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.pagina-link:hover {
    background: var(--primary-dark);
}

.pagina-info {
    color: var(--text-light);
    font-size: 0.95rem;
}

.nessun-articolo {
    text-align: center;
    color: var(--text-light);
    padding: 3rem;
    font-style: italic;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .servizio-card {
        flex: 0 1 calc(50% - 15px);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .benessere-testo h1 { font-size: 2rem; }

    .logo-nome {
        font-size: 0.75rem;
    }

    .logo-titolo {
        font-size: 0.55rem;
    }

    .contatti-header {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 0 20px;
        transition: var(--transition);
        box-shadow: -5px 0 20px var(--shadow);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 15px 30px;
        border-bottom: 1px solid var(--background-alt);
    }

    .hero {
        height: auto;
        min-height: 30vh;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .benessere-content,
    .chi-sono-content,
    .approccio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chi-sono-foto {
        order: -1;
    }

    .servizio-card {
        flex: 0 1 100%;
    }

    .articoli-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }

    .logo-nome {
        font-size: 0.65rem;
    }

    .logo-titolo {
        font-size: 0.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

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

/* ===== BREADCRUMB BAR ===== */
.breadcrumb-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 15px 0;
}

.breadcrumb-bar .container {
    display: flex;
    align-items: center;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    padding: 0;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--white);
}

/* Cookie table for Cookie Policy page */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: var(--primary);
    color: white;
}

.cookie-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.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 {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.cookie-banner-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--white);
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background-color: var(--primary);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background-color: var(--primary-dark);
}

.cookie-btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }

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

    .cookie-banner-text p {
        text-align: center;
        font-size: 0.9rem;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
