:root {
    --bg-light: #f8f9fa;
    --color-bg: #f8f8f8;
    --color-1: #e8f5e8;
    --color-2: #e1f9e1;
    --color-3: #3a7a3a;
    --color-3-hover: #4c9e4c;
    --color-4: #a0c435;
    --color-4-hover: #86a81f;
    --color-text: #333333;
    --color-navbar: #f8f8f8;
    --color-border: #e0e0e0;
    --color-footer: #dddddd;
    --color-red: #dc2f34;
    --color-rifiuti: #de5104;
    --color-ona: var(--color-red);
    --color-nextville: #1e5685;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('Fira_Sans/FiraSans-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

#page-content {
    margin-top: 120px;
}

a {
    color: inherit !important;
    transition: color 0.2s ease;
    cursor: pointer;
}

.link-colore {
    color: inherit !important;
    transition: color 0.2s ease;
}

.link-colore:hover {
    color: var(--color-3-hover) !important;
}

.rifiuti-link {
    background-color: var(--color-rifiuti);
    border-color: var(--color-rifiuti);
    color: white;
    transition: all ease-in-out 0.2s;
}

.rifiuti-link:hover {
    background-color: transparent;
    color: var(--color-rifiuti);
}

.ona-link {
    background-color: var(--color-ona);
    border-color: var(--color-ona);
    color: white;
    transition: all ease-in-out 0.2s;
}

.ona-link:hover {
    background-color: transparent;
    color: var(--color-ona);
}

.nextville-link {
    background-color: var(--color-nextville);
    border-color: var(--color-nextville);
    color: white;
    transition: all ease-in-out 0.2s;
}

.nextville-link:hover {
    background-color: transparent;
    color: var(--color-nextville);
}

a:hover {
    text-decoration: underline;
}

.bg-light-green {
    background-color: var(--color-2) !important;
}

.text-color-3 {
    color: var(--color-3);
    transition: all ease-in-out 0.2s;
}

.text-color-3:hover {
    color: var(--color-3-hover);
}

.text-color-4 {
    color: var(--color-4);
    transition: all ease-in-out 0.2s;
}

.text-color-4:hover {
    color: var(--color-4-hover);
}

.scheda-commento h4 h5 {
    margin-bottom: 0 !important;
}

.scheda-commento p {
    text-align: justify;
    margin-top: 1rem;
    margin-bottom: 0;
}

.scheda-commento ol p {
    text-align: left;
    margin-top: .8rem;
    margin-bottom: 0;
}

.scheda-commento ul p {
    text-align: left;
    margin-top: .5rem;
    margin-bottom: 0;
}

/* Top navigation bar */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background-color: white;
    border-bottom: 1px solid var(--color-border);
}

.top-nav-links {
    display: flex;
    gap: 1.5rem;
}

.top-nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.search-icon {
    cursor: pointer;
}

#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.main-nav {

    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-3);
    height: 120px;
    /* Altezza doppia iniziale */
    z-index: 1000;
}

@media (max-width: 768px) {

    .navbar-collapse {
        background-color: #000;
        padding: 1rem;
    }
}


.under-nav {
    width: 100%;
    /* height: 120px; */
    /* Altezza doppia iniziale */
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

/* Logo più grande inizialmente */
.logo-container img {
    height: 70px;
    /* Proporzionale alla nav iniziale */
    transition: all 0.3s ease-in-out;
}

/* Menu con voci centrate verticalmente */
.main-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Icona di ricerca */
.search-icon svg {
    transition: color 0.3s ease-in-out;
}

/* Link del menu */
.main-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease-in-out;
}

.main-menu a:hover {
    text-decoration: underline;
    color: var(--color-2);
}

/* Quando la pagina viene scrollata */
.main-nav.scrolled {
    height: 60px;
    /* Si riduce alla metà */
    background-color: black;
    padding: 1rem 2rem;
}

.under-nav.scrolled {
    height: 60px;
    /* Si riduce alla metà */
}

.main-nav.scrolled .logo-container img {
    height: 40px;
    /* Si riduce proporzionalmente alla nav */
}

.main-nav.scrolled .main-menu a {
    color: white;
    /* Cambia colore per contrasto */
}

/* L'icona di ricerca diventa bianca quando si scorre */
.main-nav.scrolled .search-icon svg {
    fill: white;
}

.dropdown-menu {
    border-radius: 3px;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: all ease-in-out 0.3s;
    background-color: rgba(255, 255, 255, 0.7) !important;
}

.dropdown-menu.show {
    transition: all ease-in-out 0.3s;
    transform: translate3d(0px, 26px, 0px) !important;
}

.dropdown-item {
    color: var(--color-3);
    background-color: transparent;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: transparent !important;
    color: var(--color-3-hover);
}

/* Margine superiore per evitare sovrapposizione con hero section */
.hero {
    background-color: var(--color-3);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    transition: margin-top 0.3s ease-in-out;
}

.hero-section {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    /* margin-top: 120px; */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 42, 65, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
}


/* Stili per il carosello avanzato delle Autorità */
.primo-piano-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 350px;
    overflow: hidden;
}

.primo-piano-item {
    position: absolute;
    width: 250px;
    transition: all 0.5s ease;
}

.primo-piano-card {
    border: none;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Stili per diverse posizioni nel carosello */
.item-center {
    z-index: 3;
    transform: translateX(0);
    opacity: 1;
}

.item-left-1,
.item-right-1 {
    z-index: 2;
    transform: scale(0.7);
    opacity: 0.7;
}

.item-left-1 {
    transform: translateX(-180px) scale(0.7);
}

.item-right-1 {
    transform: translateX(180px) scale(0.7);
}

.item-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(250px) scale(0.6);
}


.carousel-collane {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.card-collana {
    flex: 0 0 auto;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: var(--color-3);
    padding: 0.5rem;
    z-index: 10;
    cursor: pointer;
    transition: all ease-in-out .2s;
}

.slider-arrow:hover {
    color: var(--color-3-hover);
    transform: translateY(-50%) scale(1.1);
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.tema-toggle {
    background-color: var(--color-3);
    border-color: var(--color-3);
    color: white;
    transition: all ease-in-out .2s;
}

.tema-toggle:hover {
    background-color: var(--color-3-hover);
    border-color: var(--color-3-hover);
}

.tema-toggle.active {
    background-color: white;
    color: var(--color-3-hover);
}

.tema-toggle-light {
    background-color: var(--color-4);
    border-color: var(--color-4);
    color: white;
    transition: all ease-in-out .2s;
}

.tema-toggle-light:hover {
    background-color: var(--color-4-hover);
    border-color: var(--color-4-hover);
}

.tema-toggle-light.active {
    background-color: white;
    color: var(--color-4);
}

.green-button {
    background-color: var(--color-3);
    border-color: var(--color-3);
    color: white;
    transition: all ease-in-out .3s;
}

.green-button:hover {
    background-color: white;
    color: var(--color-3);
}

.red-button {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: white;
    transition: all ease-in-out .3s;
}

.red-button:hover {
    background-color: white;
    color: var(--color-red);
}

.reverse-green-button {
    background-color: white;
    border-color: var(--color-3);
    color: var(--color-3);
    transition: all ease-in-out .3s;
}

.reverse-green-button:hover {
    background-color: var(--color-3);
    color: white;
}

.reverse-red-button {
    background-color: white;
    border-color: var(--color-red);
    color: var(--color-red);
    transition: all ease-in-out .3s;
}

.reverse-red-button:hover {
    background-color: var(--color-red);
    color: white;
}

.rotate-icon {
    transition: transform 0.3s ease;
}

.rotate-icon.open {
    transform: rotate(90deg);
}

.btn-no-hover:hover {
    background-color: transparent !important;
    color: inherit !important;
    border-color: inherit !important;
}

.tag-doc {
    background-color: lightblue;
    color: var(--color-text);
    transition: all ease-in-out 0.2s;
}

.tag-doc:hover {
    opacity: 0.7;
}

.tag-ente {
    background-color: lightsalmon;
    color: var(--color-text);
    transition: all ease-in-out 0.2s;
}

.tag-ente:hover {
    opacity: 0.7;
}

.tag-settore {
    background-color: lightgreen;
    color: var(--color-text);
    transition: all ease-in-out 0.2s;
}

.tag-settore:hover {
    opacity: 0.7;
}

.tag-std {
    background-color: lightseagreen;
    color: var(--color-text);
    transition: all ease-in-out 0.2s;
}

.tag-std:hover {
    opacity: 0.7;
}

.tag-anno {
    background-color: lightpink;
    color: var(--color-text);
    transition: all ease-in-out 0.2s;
}

.tag-anno:hover {
    opacity: 0.7;
}

.border-bottom:last-child {
    border-bottom: none !important;
}

/* Quando la navbar si riduce, lo spessore si riduce */
.scrolled+.hero {
    margin-top: 60px;
}


.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-container button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-3);
    border: none;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-container button:hover {
    background: var(--color-3-hover);
}

/* Quick filters */
.quick-filters {
    background-color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: white;
    border: 1px solid var(--color-3);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--color-3);
}

.filter-btn:hover {
    background-color: var(--color-3);
    color: white;
}

/* Main content */
.main-content {
    display: flex;
    max-width: 1200px;
    margin: 2rem auto;
    gap: 2rem;
    padding: 0 2rem;
}

/* Sidebar */
.sidebar {
    flex: 0 0 250px;
}

.sidebar-widget {
    background-color: white;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    color: var(--color-3);
    font-size: 1.2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.alphabet-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.letter {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-1);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
    color: var(--color-text);
}

.letter:hover,
.letter:focus {
    background-color: var(--color-3);
    color: white;
}

.standard-filters {
    margin-top: 1rem;
}

.standard-filters label {
    display: block;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.standard-filters input {
    margin-right: 0.5rem;
}

.seminar-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.seminar-icon {
    height: 1rem;
    width: 20px;
    object-fit: contain;
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

.seminar-item span {
    line-height: 1.3;
}

/* Sezione news */

.news-card {
    height: 100%;
    transition: transform 0.3s ease;
    border-radius: 0 !important;
    border: none !important;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    font-size: 0.75rem;
    color: var(--color-text);
}

.news-autore {
    font-size: 0.75rem;
    color: var(--color-3);
    font-style: italic;
}

/* Glossary content */
.glossary-content {
    flex: 1;
}

.glossary-section {
    margin-bottom: 2rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.section-heading {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-3);
    color: var(--color-3);
    font-size: 1.5rem;
    font-weight: 300;
}

.section-heading:before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--color-3);
    margin-right: 10px;
    display: inline-block;
}

.term {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    position: relative;
}

.term:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.term h3 {
    margin-bottom: 0.75rem;
    color: var(--color-3);
    font-size: 1.2rem;
}

.term p {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.term-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    text-transform: uppercase;
}

.term-tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--color-1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-3);
    font-weight: 500;
    text-transform: uppercase;
}

/* Footer */
footer {
    background-color: var(--color-footer);
    padding: 3rem 2rem;
    margin-top: 2rem;
    color: var(--color-text);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #555;
    color: #aaa;
    font-size: 0.9rem;
}

.quick-filters {
    background-color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: white;
    border: 1px solid var(--color-3);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--color-3);
}

.filter-btn:hover {
    background-color: var(--color-3);
    color: white;
}

.glossary-content {
    flex: 1;
}

.glossary-section {
    margin-bottom: 2rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.section-heading {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-3);
    color: var(--color-3);
    font-size: 1.5rem;
    font-weight: 300;
}

.section-heading:before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--color-3);
    margin-right: 10px;
    display: inline-block;
}

.term {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    position: relative;
}

.term:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.term h3 {
    margin-bottom: 0.75rem;
    color: var(--color-3);
    font-size: 1.2rem;
}

.term p {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.term-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    text-transform: uppercase;
}

.term-tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--color-1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-3);
    font-weight: 500;
    text-transform: uppercase;
}

.main-content {
    display: flex;
    max-width: 1200px;
    margin: 2rem auto;
    gap: 2rem;
    padding: 0 2rem;
}

.sidebar {
    flex: 0 0 250px;
}

.sidebar-widget {
    background-color: white;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    color: var(--color-3);
    font-size: 1.2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.letter {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-1);
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
    color: var(--color-text);
}

.letter:hover {
    background-color: var(--color-3);
    color: white;
}

.glossary-content {
    flex: 1;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: var(--color-3);
}

.main-nav.scrolled .language-switch {
    color: white;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-border);
    transition: 0.3s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--color-3);
}

input:checked+.slider:before {
    transform: translateX(20px);
}


/*.term {
    width: calc(75% - 2rem); /* Riduce la larghezza delle card di circa 1/4
} */

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

.slick-carousel .slick-item {
    color: white;
    background-color: #333;
    min-height: 250px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    margin: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-carousel .slick-item:hover {
    opacity: .7
}

.slick-prev:before,
.slick-next:before {
    color: black;
    content: '';
}

.slick-arrow {
    width: 15px;
    height: 15px;
    z-index: 5;
    border-top: 3px solid #666;
    border-right: 3px solid #666;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.slick-arrow:hover {
    opacity: .5
}

.slick-prev {
    left: 0%;
    transform: rotate(225deg);
}

.slick-next {
    right: 0%;
    transform: rotate(45deg);
}


/**!
* Caption Styles
*/

.caption-item {
    right: 0;
    margin: 0px;
    padding: 0px;
}

.caption-link {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 400px;
}

.caption-link .caption-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
}

.caption-layer.green {
    background: rgba(173, 219, 50, .5);
}

.caption-layer.light-green {
    background: rgba(6, 209, 164, .7);
}

.caption-layer.blue {
    background: rgba(152, 231, 254, .5);
}

.caption-link .caption-layer:hover,
.caption-layer.video-icon {
    opacity: 1;
}

.caption-link .caption-layer .caption-content {
    position: absolute;
    top: 35%;
    width: 100%;
    text-align: center;
    font-size: 50px;
    color: #fff;
}

.caption-link .caption-layer .caption-content p {
    display: none;
}

.slick-slide img {
    display: inline;
}


@media (max-width: 768px) {
  .newsletter-container {
    flex-direction: column;
  }
  .home-collane {
    flex-direction: column;
  }
  .hero-section {
    height: 200px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}
