@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ffffff;
        padding: 10px 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: fixed; /* keep navbar fixed on top */
        top: 0;
        left: 0;
        width: 100%; /* occupy full screen */
        z-index: 1000;
    }

    .navbar img {
        height: 50px;
    }

    /* Hamburger button */
    .menu-toggle {
        display: block;
        font-size: 26px;
        color: #fe6649;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* Menu links hidden by default */
    .menu-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; /* place below navbar */
        left: 0;
        width: 100%;
        background-color: #f7faff;
        box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
        border-top: 2px solid #fe6649;
    }

    /* Show menu when active */
    .menu-links.show {
        display: flex;
    }

    /* Each nav item in a box */
    .menu-links .nav-item {
        border-bottom: 1px solid #e5ecf5;
        margin: 5px 10px; /* space around each box */
        background-color: #ffffff; /* box background */
        border-radius: 8px; /* rounded corners */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .nav-label {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        padding: 15px 20px;
        font-size: 18px;
        color: #092b5b;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .nav-label span.nav-arrow {
        color: #fe6649;
        font-size: 18px;
    }

    /* Dropdowns inside mobile */
    .nav-item.open .nav-dropdown {
        display: block;
    }

    .nav-dropdown {
        display: none;
        background-color: #ffffff;
        padding: 10px 20px;
        border-top: 1px solid #e5ecf5;
        border-radius: 0 0 8px 8px;
    }

    .nav-dropdown a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
        color: #092b5b;
        text-decoration: none;
    }

    .nav-dropdown a:hover {
        color: #fe6649;
    }
}

/* --- DESKTOP NAVBAR --- */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .menu-links {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 25px;
    }

    .nav-item {
        position: relative;
    }
}

.faq {
    width: 100%;
    margin: 40px 0;
    font-family: "Inter", sans-serif;
    color: #222;
    padding: 0 40px; /* optional – adds breathing room on sides */
    box-sizing: border-box; /* ensures padding doesn’t overflow */
}

.faq details {
    background: transparent; /* integrated with page */
    border-top: 2px solid black; /* only top border visible */
    padding: 18px 0;
    transition: background-color 0.3s ease;
}

/* Hide default disclosure triangle */
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::marker {
    display: none;
}

.faq summary {
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding: 6px 0;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Custom arrow */
.faq summary::after {
    content: "›";
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.faq details[open] summary::after {
    transform: rotate(90deg);
}

/* Hover effect */
.faq summary:hover {
    color: #fe6649; /* accent color */
    transform: translateX(4px);
}

/* Answer styling */
.faq details p {
    margin-top: 10px;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Animate open/close of answer */
.faq details[open] p {
    opacity: 1;
    max-height: 200px; /* adjust if answers are longer */
}

/* === Quick fixes for mobile and cookie banner === */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0c3764;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}
#cookie-banner button {
    margin-left: 10px;
    background-color: #fe6649;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

/* Adjustments for LP consistency */
body {
    font-family: "Lato", sans-serif;
    background-color: #ffffff;
    overflow: visible;
}

footer .social-links a {
    margin: 0 10px;
    display: inline-block;
    color: white;
}

footer .social-links img {
    height: 22px;
    width: 22px;
    filter: brightness(0) invert(1);
}

/* Pet insurance fix — ensure reimbursement text on one line */
.pet-insurance-reimbursement {
    white-space: nowrap;
}
h3,
h4,
li {
    font-weight: normal;
}
.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
}
.summary-table th,
.summary-table td {
    padding: 10px;
    border: 1px solid #eee;
    text-align: left;
}
.faq {
    width: 100%;
    margin: 40px 0;
    font-family: "Inter", sans-serif;
    color: #222;
    padding: 0 40px; /* optional – adds breathing room on sides */
    box-sizing: border-box; /* ensures padding doesn’t overflow */
}

.faq details {
    background: transparent; /* integrated with page */
    border-top: 2px solid black; /* only top border visible */
    padding: 18px 0;
    transition: background-color 0.3s ease;
}

/* Hide default disclosure triangle */
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::marker {
    display: none;
}

.faq summary {
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding: 6px 0;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Custom arrow */
.faq summary::after {
    content: "›";
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.faq details[open] summary::after {
    transform: rotate(90deg);
}

/* Hover effect */
.faq summary:hover {
    color: #fe6649; /* accent color */
    transform: translateX(4px);
}

/* Answer styling */
.faq details p {
    margin-top: 10px;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Animate open/close of answer */
.faq details[open] p {
    opacity: 1;
    max-height: 200px; /* adjust if answers are longer */
}
.note-contact {
    font-size: 13px;
    color: #555;
    margin-top: 8px;
}

@media (max-width: 480px) {
    /* Estilos para móviles pequeños */
    .banner-cta,
    .cta-big,
    .banner-title,
    .banner-list {
        text-align: center;
    }
    footer {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        color: #0c3764;
        font-family: "Lato", sans-serif;
    }
}
@media (max-width: 576px) {
    /* Estilos para móviles medianos */
    .banner-cta,
    .cta-big,
    .banner-title,
    .banner-list {
        text-align: center;
    }
    footer {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        color: #0c3764;
        font-family: "Lato", sans-serif;
    }
}
@media (max-width: 768px) {
    /* Estilos para móviles grandes y phablets */
    .banner-cta,
    .cta-big,
    .banner-title,
    .banner-list {
        text-align: center;
    }
    footer {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        color: #0c3764;
        font-family: "Lato", sans-serif;
    }
}
@media (max-width: 992px) {
    /* Estilos para tablets */
    .banner-cta,
    .cta-big,
    .banner-title,
    .banner-list {
        text-align: center;
    }
    footer {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        color: #0c3764;
        font-family: "Lato", sans-serif;
    }
}

.mm-menu {
    --mm-color-background: #ffffff;
    --mm-color-text: #0f3350;
    --mm-color-highlighted: #0c8ed6;
}

.mm-navbar {
    background-color: #ffffff !important;
    color: #0f3350 !important;
    font-weight: bold;
}

.mm-panel {
    padding-top: 10px;
}

.mm-menu_offcanvas {
    /*top: 75px;*/
    width: 100%;
    min-width: 240px;
    max-width: 440px;
}

.mm-listitem__btn {
    padding-right: 20px;
}

.mm-btn_close::before,
.mm-btn_close::after {
    width: 8px;
    height: 8px;
    border-color: #fe6649 !important;
}

.mm-btn_close::before {
    right: 14px;
}

.mm-btn_prev::before {
    border-color: #fe6649 !important;
}

.mm-btn_next::after {
    right: 35px;
    border-color: #fe6649 !important;
}

.mm-listitem::after {
    display: none;
}

.mm-listitem__btn {
    padding-top: 7px;
    padding-bottom: 7px;
}

.mm-item {
    flex-direction: column !important;
}

.mm-listitem__text {
    padding-left: 10px;
    padding-right: 10px;
}
