    body {
        font-family: 'Inter', sans-serif;
        color: #3c2a1e;
        background-color: #f3efe5;
        line-height: 1.6;
    }

    .container {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }


    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Playfair Display', serif;
        color: #3c2a1e;
    }

    p {
        font-family: 'Lora', serif;

        text-align: justify;
        /* giustifica il testo */
        text-justify: inter-word;
        /* giustifica basandosi sulle parole, non sui caratteri */
        hyphens: auto;
        /* divide le parole lunghe con trattini, riducendo spazi eccessivi */
        line-height: 1.5;
        /* mantiene le righe leggibili */
    }


    .editorial-section {
        padding: 80px 0;
        /* solo verticale, rimuove i 20px laterali */
        background: linear-gradient(135deg, #163c49, #e8e8e8);
        width: 100vw;
        min-height: 100vh;
        /* occupa tutta la larghezza della finestra */
        margin-left: calc(-50vw + 50%);
        /* allinea al bordo della finestra */
        margin-right: calc(-50vw + 50%);
    }

    .section {
        padding: 80px 0;
        width: 100vw;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #163c49;
        color: #e8e8e8;
        /* occupa tutta la larghezza della finestra */
        margin-left: calc(-50vw + 50%);
        /* allinea al bordo della finestra */
        margin-right: calc(-50vw + 50%);
    }

    .editorial-section .cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
        align-items: stretch;
        /* assicura che tutte le card abbiano la stessa altezza */
    }

    .editorial-section .card {
        background-color: #e8e8e8;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* mantiene gli elementi distribuiti verticalmente */
        text-align: justify;
        /* giustifica il testo */
    }


    .editorial-section .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px #3c2a1e;
    }

    .cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .value-icon {
        max-width: 60px;
        margin-bottom: 10px;
    }

    .dogprints {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 30px 0;
    }

    .dogprints img {
        width: 60px;
        opacity: 0.8;
    }

    .space {
        padding: 80px 0;
        height: 60px;
        /* altezza dello spazio */
        background-color: #f3efe5;
        /* mantiene lo sfondo bianco */
        min-height: 100vh;
    }

    #cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #222;
        color: white;
        padding: 15px;
        display: none;
        text-align: center;
    }

    #cookie-banner button {
        margin: 0 10px;
        padding: 5px 10px;
        cursor: pointer;
    }


    /* MOBILE OPTIMIZATIONS */
    @media (max-width: 768px) {
        body {
            font-size: 16px;
        }

        .editorial-section,
        .section {
            padding: 50px 15px;
        }

        .editorial-section .cards,
        .cards {
            grid-template-columns: 1fr;
        }

        h2,
        h3,
        h4,
        h5,
        h6 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        p {
            font-size: 1rem;
            line-height: 1.4;
        }

        .value-icon {
            max-width: 50px;
        }

        .dogprints img {
            width: 50px;
        }
    }