/* ============================================================
   Rinomin Drive – Soft Pastel Modern CSS
   Style: soft_pastel (gentle colors, modern, dreamy, elegant)
   Font stack: Montserrat (display), Open Sans (body)
   Primary: #003366 | Accent: #FEB845 | Light: #F2F2F2 + Pastel tints
   ============================================================ */

/* RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    font-size: 100%; /* 16px */
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body, html {
    width: 100%;
    min-height: 100%;
}
img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}
ul, ol {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
button, input, textarea, select {
    font: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}
button {
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* ROOT VARIABLES (with fallbacks for non-support) */
:root {
    --primary: #003366;
    --secondary: #F2F2F2;
    --accent: #FEB845;
    --pastel-blue: #aee0fa;
    --pastel-lilac: #ece0fa;
    --pastel-pink: #ffe0ec;
    --pastel-yellow: #fff7de;
    --pastel-mint: #d5faee;
    --text-main: #253350;
    --text-dark: #1d2442;
    --text-light: #7b8496;
    --shadow-soft: 0 4px 28px 0 rgba(62, 79, 165, 0.07);
    --shadow-card: 0 2px 16px 0 rgba(32, 56, 120, 0.08);
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius: 10px;
    --radius-sm: 6px;
    --font-display: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;
}

/* ------------------------------
   BASE BODY STYLES
------------------------------- */
body {
    font-family: var(--font-body), sans-serif;
    background-color: var(--pastel-blue);
    color: var(--text-main);
    line-height: 1.65;
    font-size: 16px;
    min-height: 100vh;
    background-image: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

/* Typography -------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display), sans-serif;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
}
h1 {
    font-size: 2.25rem;
    line-height: 1.18;
    margin-bottom: 20px;
}
h2 {
    font-size: 1.6rem;
    margin-bottom: 18px;
}
h3 {
    font-size: 1.17rem;
    font-weight: 600;
}
h4, h5, h6 {
    font-size: 1rem;
    font-weight: 500;
}
p, ul, ol {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 14px;
}
ul.features-list, .features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 12px;
}
ul.features-list li {
    background: var(--pastel-yellow);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    font-size: 1rem;
    min-width: 210px;
    color: var(--text-main);
    transition: box-shadow 0.15s;
}
ul.features-list li img {
    width: 32px;
    min-width: 28px;
    min-height: 28px;
}
ul.features-list li strong {
    color: var(--primary);
    font-weight: 700;
}
@media (max-width: 600px) {
    ul.features-list {
        flex-direction: column;
    }
}

.text-section {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* HERO ------------------------------------------------------- */
.hero {
    background: linear-gradient(105deg, var(--pastel-lilac) 0%, #e2f3fb 100%);
    padding: 56px 0 60px;
    margin-bottom: 60px;
}
.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero .content-wrapper {
    text-align: center;
    align-items: center;
    gap: 28px;
}
.hero h1 {
    color: var(--primary);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 12px rgba(100, 130, 250, 0.08);
}
.hero-sub {
    font-size: 1.18rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}

/* CTA BUTTONS ------------------------------------------------ */
.cta-main, .cta-nav {
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-display), sans-serif;
    font-weight: 700;
    border-radius: var(--radius-xl);
    letter-spacing: 0.01em;
    display: inline-block;
    padding: 13px 40px;
    font-size: 1.12rem;
    margin-top: 10px;
    box-shadow: 0 3px 24px 0 rgba(245, 208, 120, 0.09);
    border: 2px solid transparent;
    transition: background 0.18s, color 0.18s, box-shadow 0.2s, border 0.2s;
}
.cta-main:hover, .cta-nav:hover, .cta-main:focus {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--accent);
    box-shadow: 0 8px 30px 0 rgba(0, 51, 102, 0.15);
}
.cta-nav {
    padding: 8px 20px;
    margin-left: 10px;
    font-size: 1rem;
}

/* HEADER/NAV ------------------------------------------------- */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 18px 0;
    background: var(--secondary);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    box-shadow: 0 4px 24px rgba(180, 233, 255, 0.08);
    position: relative;
    z-index: 20;
}
.logo-link {
    display: flex;
    align-items: center;
    margin-right: 16px;
}
nav.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
nav.main-nav a {
    font-family: var(--font-body), sans-serif;
    font-size: 1rem;
    color: var(--primary);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background 0.15s, color 0.15s;
    position: relative;
}
nav.main-nav a:hover, nav.main-nav a:focus {
    background: var(--pastel-blue);
    color: var(--primary);
}
nav.main-nav a.cta-nav {
    background: var(--accent);
    color: var(--primary);
    margin-left: 12px;
    border-radius: var(--radius-lg);
    padding: 8px 22px;
    border: 2px solid transparent;
    transition: background 0.15s, color 0.15s, border 0.15s;
}
nav.main-nav a.cta-nav:hover {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--accent);
}

/* ------------------------------
   MOBILE NAVIGATION
------------------------------- */
.mobile-menu-toggle {
    display: none;
    background: var(--accent);
    color: var(--primary);
    border-radius: var(--radius-xl);
    padding: 8px 18px;
    font-size: 1.55rem;
    box-shadow: 0 2px 8px 0 rgba(254, 184, 69, 0.16);
    border: none;
    transition: background 0.15s, color 0.12s;
    z-index: 101;
}
.mobile-menu-toggle:focus { outline: 2px solid var(--primary); }

.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(145deg, var(--pastel-pink) 60%, var(--pastel-blue) 100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(-100%);
    transition: transform 0.34s cubic-bezier(0.64,0.04,0.35,1);
    box-shadow: 0 8px 36px 0 rgba(30, 60, 120, 0.18);
    padding: 34px 22px 22px 22px;
    overflow-y: auto;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.6rem;
    align-self: flex-end;
    margin-bottom: 16px;
    padding: 8px 13px;
    box-shadow: 0 3px 12px 0 rgba(254, 184, 69, 0.12);
    border: none;
}
nav.mobile-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 22px;
    margin-top: 10px;
}
nav.mobile-nav a {
    padding: 18px 0 8px 5px;
    font-size: 1.11rem;
    font-family: var(--font-display), sans-serif;
    color: var(--primary);
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: background 0.12s, color 0.13s;
}
nav.mobile-nav a:hover {
    background: var(--pastel-lilac);
}

@media (max-width: 1050px) {
    nav.main-nav {
        gap: 16px;
    }
}
@media (max-width: 900px) {
    nav.main-nav {
        gap: 9px;
    }
    .header-container {
      padding-left: 8px; padding-right: 8px;
    }
}
@media (max-width: 768px) {
    nav.main-nav { display: none; }
    .mobile-menu-toggle {
        display: block;
    }
    .header-container {
        flex-direction: row;
        gap: 6px;
        min-height: 64px;
    }
}

/* ----------------------------------
   GENERAL FLEX LAYOUT CLASSES
----------------------------------- */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
    position: relative;
    transition: box-shadow 0.18s;
    padding: 20px 26px;
}
.card:hover, .card:focus-within {
    box-shadow: 0 10px 44px 0 rgba(32, 56, 130, 0.19);
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
        gap: 20px;
    }
    .content-grid {
      flex-direction: column;
    }
    .card-container { flex-direction: column; }
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    margin-bottom: 24px;
    background: var(--pastel-mint);
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 22px 0 rgba(56, 125, 80, 0.08);
    font-size: 1.15rem;
    color: var(--primary);
    max-width: 530px;
    width: 100%;
    transition: box-shadow 0.15s, background 0.16s;
}
.testimonial-card p {
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.01em;
    font-size: 1.08rem;
    line-height: 1.5;
    margin-bottom: 2px;
}
.testimonial-author {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}
.testimonial-card:hover {
    box-shadow: 0 8px 34px 0 rgba(33, 160, 92, 0.12);
    background: #e4faf3;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 14px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 16px;
}
.service-item {
    background: var(--pastel-lilac);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 28px 22px 22px 22px;
    min-width: 230px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 1.01rem;
    position: relative;
    margin-bottom: 12px;
    border: 1.5px solid #eee;
    transition: box-shadow 0.18s, border 0.13s, background 0.18s;
}
.service-item:hover {
    box-shadow: 0 7px 28px 0 rgba(100, 80, 190, 0.11);
    border: 1.5px solid var(--accent);
    background: var(--pastel-pink);
    z-index: 2;
}
.service-item h3 {
    color: var(--primary);
    font-size: 1.14rem;
}
.service-price, .service-item span {
    color: var(--accent);
    background: #fff9ef;
    font-family: var(--font-display), sans-serif;
    font-weight: 700;
    border-radius: var(--radius-sm);
    padding: 4px 9px;
    font-size: 1.07rem;
    letter-spacing: 0.015em;
    margin-top: 7px;
    align-self: flex-start;
}
.service-item img {
    width: 36px;
    height: 36px;
    margin-bottom: 7px;
}

@media (max-width: 800px) {
    .service-list { flex-direction: column; gap: 17px; }
    .service-item { min-width: 160px; }
}

/* PRICING TABLE ----------------------------------------------- */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin-bottom: 26px;
    font-size: 1rem;
}
.pricing-table th, .pricing-table td {
    text-align: left;
    padding: 17px 18px;
    color: var(--primary);
    font-weight: 500;
}
.pricing-table thead th {
    background: var(--pastel-pink);
}
.pricing-table tbody tr {
    border-top: 1px solid #e6e6e6;
    background: var(--pastel-yellow);
    transition: background 0.17s;
}
.pricing-table tbody tr:nth-child(odd) {
    background: var(--pastel-blue);
}
.pricing-table tbody tr:hover {
    background: var(--pastel-lilac);
}

/* ACCORDION (FAQ) --------------------------------------------- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-item {
    background: var(--pastel-mint);
    border-radius: var(--radius);
    padding: 20px 26px;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--accent);
    font-size: 1.04rem;
    color: var(--primary);
    transition: box-shadow 0.16s, background 0.17s;
}
.faq-item h2 {
    font-size: 1.12rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 700;
}
.faq-item p {
    color: var(--text-main);
}
.faq-item a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.13s;
}
.faq-item a:hover {
    color: var(--accent);
}

/* CTA AREA ---------------------------------------------------- */
.cta-area {
    background: linear-gradient(115deg, var(--pastel-yellow) 0%, #f5daf7 100%);
    padding: 54px 0 54px 0;
    margin-bottom: 60px;
    text-align: center;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 56px 0 rgba(90,88,188,0.08);
}
.cta-area .cta-main { margin-top: 20px; margin-bottom: 10px; }

/* CONTACT & INFO ---------------------------------------------- */
.contact-information p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 1rem;
}
.contact-information img { width: 24px; }
.map-location, .open-hours {
    margin: 20px 0 16px 0;
}
.open-hours ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* FOOTER ------------------------------------------------------ */
footer {
    margin-top: 50px;
    background: linear-gradient(102deg, var(--pastel-blue) 70%, #fff 100%);
    border-top: 2px solid #e6e9f2;
    padding-top: 30px;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 16px 20px 16px;
    max-width: 1140px;
    margin: 0 auto;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: 0 -2px 18px 0 rgba(90,110,160,0.04);
    position: relative;
}
.footer-main img {
    width: 90px;
    height: auto;
    margin-bottom: 14px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    min-width: 180px;
    margin-bottom: 15px;
}
.footer-nav a {
    font-family: var(--font-display), sans-serif;
    color: var(--primary);
    font-size: 0.98rem;
    font-weight: 600;
    opacity: 0.85;
    padding: 5px 8px;
    border-radius: var(--radius-sm);
    transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover {
    background: var(--accent);
    color: var(--primary);
    opacity: 1;
}
.footer-contact, .footer-hours {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.98rem;
    color: var(--primary);
}
.footer-contact img, .footer-hours img {
    width: 16px;
    margin-right: 5px;
    vertical-align: middle;
}
.footer-copy {
    flex-basis: 100%;
    color: #667;
    font-size: 0.9rem;
    text-align: left;
    margin-top: 13px;
    opacity: 0.62;
}
@media (max-width: 900px) {
    .footer-main {
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
    }
    .footer-nav { margin-bottom: 5px; }
}

/* Confirmation / Thank You Section --------------------------- */
.confirmation-section {
    align-items: center;
    text-align: center;
    gap: 22px;
}
.confirmation-section .cta-main {margin: 18px auto 0 auto;}

/* Microinteractions + Focus States --------------------------- */
a,
button,
input[type="submit"] {
    outline: none;
    transition: box-shadow 0.2s, background 0.13s, color 0.19s;
}
a:focus,
button:focus {
    box-shadow: 0 0 0 2px var(--accent), 0 2px 16px 0 rgba(254, 184, 69, 0.07);
    outline: none;
}
input:focus, textarea:focus {
    box-shadow: 0 2px 10px 0 rgba(0, 51, 102, 0.05);
}

/* FAQ SNIPPET (servizi page) --------------------------------- */
.faq-snippet {
    background: var(--pastel-yellow);
    border-radius: var(--radius);
    box-shadow: 0 2px 18px 0 rgba(211, 182, 103, 0.09);
    padding: 20px 22px;
    font-size: 1.01rem;
    color: var(--text-main);
    margin: 12px 0 0 0;
    transition: box-shadow 0.15s;
}
.faq-snippet h3 { margin-bottom: 8px; color: var(--accent); font-size: 1.1rem; }
.faq-snippet a { color: var(--primary); text-decoration: underline; }
.faq-snippet a:hover { color: var(--accent); }

/* Contact Prompt (faq) --------------------------------------- */
.contact-prompt {
    background: var(--pastel-pink);
    border-radius: var(--radius);
    padding: 19px 21px;
    color: var(--primary);
    font-size: 1.04rem;
    box-shadow: var(--shadow-soft);
}
.contact-prompt a { color: var(--primary); text-decoration: underline; }
.contact-prompt a:hover { color: var(--accent); }

/* Table inside .text-section for privacy/GDPR ---------------- */
.text-section table { margin-top: 12px; border-collapse: collapse; width: 100%; font-size: 0.99rem; }
.text-section th, .text-section td { border: 1px solid #eee; padding: 9px 12px; }
.text-section thead th { background: var(--pastel-blue); color: var(--primary); font-weight: 700; }

/* Cookie Consent Banner -------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: linear-gradient(90deg, var(--pastel-lilac) 40%, var(--pastel-yellow) 100%);
    color: var(--primary);
    z-index: 8888;
    box-shadow: 0 -4px 28px 0 rgba(150, 105, 221, 0.13);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 19px 5vw 19px 5vw;
    transition: transform 0.33s;
    font-size: 1.07rem;
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
}
.cookie-banner.hide {
    transform: translateY(100%);
}
.cookie-banner .cookie-buttons {
    display: flex;
    gap: 11px;
}
.cookie-banner button {
    border: none;
    outline: none;
    border-radius: var(--radius-lg);
    padding: 10px 18px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.13s, color 0.14s, box-shadow 0.17s;
    margin-left: 0px;
}
.cookie-banner .accept-btn {
    background: var(--primary);
    color: #fff;
}
.cookie-banner .accept-btn:hover {
    background: var(--accent);
    color: var(--primary);
}
.cookie-banner .reject-btn {
    background: none;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.cookie-banner .reject-btn:hover {
    background: var(--pastel-pink);
}
.cookie-banner .settings-btn {
    background: var(--accent);
    color: var(--primary);
}
.cookie-banner .settings-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* Cookie Modal ----------------------------------------------- */
.cookie-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 8899;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 16px 48px 0 rgba(55, 43, 130, 0.18);
    transform: translate(-50%, -50%) scale(1);
    min-width: 330px;
    width: 96%;
    max-width: 430px;
    padding: 36px 32px 32px 32px;
    display: none;
    flex-direction: column;
    gap: 17px;
    font-size: 1rem;
    transition: box-shadow 0.2s, transform 0.22s;
    animation: cookieModalOpen 0.23s cubic-bezier(0.33, 0.81, 0.47, 1.6);
}
.cookie-modal.open {
    display: flex;
}
@keyframes cookieModalOpen {
    from { transform: translate(-50%, -54%) scale(0.98); opacity: 0; }
    to   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.cookie-modal h3 {
    color: var(--primary);
    font-size: 1.24rem;
    font-family: var(--font-display);
}
.cookie-categories {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cookie-category {
    background: var(--pastel-blue);
    border-radius: var(--radius-lg);
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.04rem;
}
.cookie-category input[type="checkbox"] {
    width: 19px;
    height: 19px;
}
.cookie-category label {
    margin-left: 5px;
    color: var(--primary);
    font-weight: 600;
}
.cookie-category.essential label {
    color: var(--accent);
}

.cookie-modal .close-modal {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.26rem;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookie-modal .modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 12px;
}
.cookie-modal .modal-actions button {
    font-size: 1rem;
    padding: 10px 18px;
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-weight: 500;
    border: none;
}
.cookie-modal .modal-actions .accept-btn {
    background: var(--primary);
    color: #fff;
}
.cookie-modal .modal-actions .accept-btn:hover {
    background: var(--accent);
    color: var(--primary);
}
.cookie-modal .modal-actions .close-modal-btn {
    background: none;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.cookie-modal .modal-actions .close-modal-btn:hover {
    background: var(--pastel-pink);
}

/* Misc ------------------------------------------------------- */
::-webkit-input-placeholder { color: #95a6bb; opacity: 1; }
::-moz-placeholder { color: #95a6bb; opacity: 1; }
:-ms-input-placeholder { color: #95a6bb; opacity: 1; }
::placeholder { color: #95a6bb; opacity: 1; }

hr {
    border: none;
    height: 1px;
    background: #eee;
    margin: 32px 0;
}

/* Scrollbar Styling ------------------------------------------ */
::-webkit-scrollbar {
    width: 8px;
    background: var(--pastel-blue);
    border-radius: var(--radius-lg);
}
::-webkit-scrollbar-thumb {
    background: var(--pastel-mint);
    border-radius: var(--radius-lg);
}

/* Responsiveness --------------------------------------------- */
@media (max-width: 600px) {
    body { font-size: 15px; }
    h1 { font-size: 1.42rem; }
    h2 { font-size: 1.18rem; }
    .header-container img { max-width: 110px !important; }
    .footer-main {
        padding: 24px 6px 14px 6px;
        gap: 10px;
    }
    .footer-nav {
        gap: 11px;
    }
    .testimonial-card {
        font-size: 1rem;
        padding: 14px 7px;
    }
    .container { padding-left: 4px; padding-right: 4px; }
    .confirmation-section { gap: 10px; }
}

/* ===================== END CUSTOM CSS ===================== */
