/* ==== CSS RESET & BASE ==== */
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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    line-height: 1.6;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #F8F5F2 0%, #E6B47A 100%);
    color: #184A3A;
    min-height: 100vh;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: #184A3A;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #E6B47A;
}
ul, ol {
    list-style: none;
}
button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

/* ==== TYPOGRAPHY ==== */
h1, .hero h1 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #184A3A;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
h2 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #184A3A;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
h3 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}
p, li {
    font-size: 1rem;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #184A3A;
}
strong {
    font-weight: 700;
}
em {
    font-style: italic;
}

/* ==== LAYOUT & SECTION ==== */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: transparent;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.text-section {
    background: #fff;
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: 0 2px 24px 0 rgba(24,74,58,0.07);
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px 0 rgba(24,74,58,0.09);
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus {
    box-shadow: 0 8px 32px 0 rgba(24,74,58,0.15);
    transform: translateY(-4px) scale(1.015);
}
.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;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 18px 0 rgba(24,74,58,0.08);
    margin-bottom: 20px;
    max-width: 520px;
    min-width: 260px;
}
.testimonial-card p {
    color: #184A3A;
    font-size: 1.06rem;
    margin-bottom: 4px;
}
.testimonial-card div {
    color: #184A3A;
    font-size: 0.97rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: #F8F5F2;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 18px;
}

/* ---- HERO SECTION ---- */
.hero {
    background: linear-gradient(120deg, #E6B47A 0%, #fff 100%);
    border-radius: 0 0 36px 36px;
    padding: 52px 0 32px 0;
    margin-bottom: 48px;
    box-shadow: 0 6px 24px 0 rgba(230,180,122,0.18);
}
.hero .container {
    justify-content: center;
}
.hero .content-wrapper {
    align-items: flex-start;
    gap: 18px;
    text-align: left;
    max-width: 670px;
}
.hero p {
    font-size: 1.17rem;
    margin-bottom: 16px;
}

/* ---- HEADER & NAVIGATION ---- */
header {
    background: rgba(248,245,242,0.92);
    box-shadow: 0 2px 16px 0 rgba(24,74,58,0.04);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 20;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
}
header img {
    height: 48px;
}
nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}
nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #184A3A;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
    background: #E6B47A;
    color: #184A3A;
}

/* ---- CTA BUTTON ---- */
.cta-btn {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    background: #184A3A;
    color: #fff;
    border-radius: 24px;
    padding: 12px 32px;
    margin-left: 12px;
    box-shadow: 0 2px 8px 0 rgba(24,74,58,0.14);
    transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.16s;
    border: none;
    outline: none;
    display: inline-block;
    cursor: pointer;
    letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
    background: #E6B47A;
    color: #184A3A;
    box-shadow: 0 5px 18px 0 rgba(24,74,58,0.11);
    transform: translateY(-2px) scale(1.03);
}

/* ==== LISTS & ICONS ==== */
ul li, ol li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1rem;
}
ul li img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* ==== INSPIRATION LIST ==== */
.inspiration-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.inspiration-list ul li {
    background: #F8F5F2;
    border-radius: 12px;
    padding: 10px 22px;
    font-weight: 600;
    color: #184A3A;
}

/* ==== FOOTER ==== */
footer {
    background: #184A3A;
    color: #fff;
    padding: 48px 0 28px 0;
}
footer .container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}
footer nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
}
footer nav a {
    color: #fff;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    opacity: 0.9;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.14s, color 0.18s, opacity 0.17s;
}
footer nav a:hover,footer nav a:focus {
    background: #E6B47A;
    color: #184A3A;
    opacity: 1;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.footer-contact p {
    display: flex;
    align-items: center;
    font-size: 0.98rem;
    gap: 7px;
    color: #fff;
    margin-bottom: 3px;
}
.footer-contact img {
    width: 20px;
    height: 20px;
}
footer p {
    margin: 0;
    font-size: 0.92rem;
    opacity: 0.75;
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    right: 22px;
    top: 22px;
    z-index: 1002;
    font-size: 2.25rem;
    background: #184A3A;
    color: #fff;
    border-radius: 44px;
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(24,74,58,0.17);
    transition: background 0.16s,color 0.14s;
}
.mobile-menu-toggle:focus {
    outline: 2px solid #E6B47A;
}
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,74,58,0.97);
    transform: translateX(-100%);
    transition: transform 0.33s cubic-bezier(0.83,0,0.17,1);
    z-index: 2003;
    display: flex;
    flex-direction: column;
    padding: 0;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    font-size: 2rem;
    color: #fff;
    background: transparent;
    align-self: flex-end;
    margin: 22px 24px 0 0;
    cursor: pointer;
    padding: 6px;
    border-radius: 44px;
    transition: background 0.18s,color 0.14s;
}
.mobile-menu-close:hover {
    background: #E6B47A;
    color: #184A3A;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
    width: 100%;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.31rem;
    padding: 15px 34px;
    color: #fff;
    border-radius: 18px;
    margin: 0 0 2px 0;
    transition: background 0.18s,color 0.13s;
    width: 90%;
    text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #E6B47A;
    color: #184A3A;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    color: #184A3A;
    box-shadow: 0 -6px 22px 0 rgba(24,74,58,0.13);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 22px 24px 22px 24px;
    z-index: 3000;
    animation: cookie-slide-in 0.6s cubic-bezier(.39,.58,.57,1.06);
}
@keyframes cookie-slide-in {
    from {transform: translateY(112px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}
.cookie-consent p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 5px;
    max-width: 520px;
}
.cookie-btns {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.cookie-btn, .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    padding: 10px 22px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    background: #184A3A;
    color: #fff;
    transition: background 0.17s,color 0.13s,transform 0.14s;
}
.cookie-btn-accept {
    background: #184A3A;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
    background: #E6B47A;
    color: #184A3A;
}
.cookie-btn-reject {
    background: #fff;
    color: #184A3A;
    border: 1.5px solid #184A3A;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
    background: #E6B47A;
    color: #184A3A;
    border-color: #E6B47A;
}
.cookie-btn-settings {
    background: #E6B47A;
    color: #184A3A;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
    background: #184A3A;
    color: #fff;
}

/* --- Cookie Preferences Modal --- */
.cookie-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,74,58,0.48);
    z-index: 3010;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fade-in 0.3s;
}
@keyframes fade-in {
    from {opacity: 0;}
    to {opacity: 1;}
}
.cookie-modal {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 38px 0 rgba(24,74,58,0.21);
    max-width: 460px;
    padding: 36px 30px 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}
.cookie-modal h3 {
    font-size: 1.4rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
}
.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.cookie-category label {
    font-size: 1rem;
    color: #184A3A;
}
.toggle-switch {
    width: 42px;
    height: 22px;
    background: #F8F5F2;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    transition: background 0.17s;
}
.toggle-switch input {
    opacity:0;
    width:0;
    height:0;
}
.toggle-slider {
    position: absolute;
    left: 2px;
    top: 2px;
    width: 18px;
    height: 18px;
    background: #184A3A;
    border-radius: 100%;
    transition: left 0.18s, background 0.16s;
}
.toggle-switch input:checked + .toggle-slider {
    left: 22px;
    background: #E6B47A;
}
.cookie-modal-footer {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 8px;
}
.cookie-modal-close {
    position: absolute;
    right: 12px;
    top: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #184A3A;
    cursor: pointer;
}
.cookie-modal-close:hover {
    color: #E6B47A;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1100px) {
    .container {
        max-width: 98vw;
        padding: 0 10px;
    }
}
@media (max-width: 900px) {
    .container {
        max-width: 99vw;
        padding: 0 4vw;
    }
    .footer-contact {
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    .container {
        max-width: 100vw;
        padding: 0 2vw;
    }
    header .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    nav {
        display: none;
    }
    .cta-btn {
        margin-left: 0;
        margin-top: 8px;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .content-wrapper, .text-section {
        padding: 18px 7px;
    }
    .hero {
        padding: 29px 0 21px 0;
        border-radius: 0 0 22px 22px;
    }
    .section {
        padding: 28px 6px;
        margin-bottom: 36px;
    }
    .content-grid, .card-container {
        flex-direction: column;
        gap: 20px;
    }
    .text-image-section {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }
    .testimonial-card {
        min-width: unset;
        width: 100%;
    }
    .footer-contact p {
        justify-content: flex-start;
    }
}
@media (max-width: 480px) {
    h1, .hero h1 {
        font-size: 1.7rem;
    }
    h2 {
        font-size: 1.2rem;
    }
    h3 {
        font-size: 1.07rem;
    }
    .cookie-modal {
        padding: 18px 7px 12px 7px;
    }
}

/* ==== ANIMATIONS & MICRO-INTERACTIONS ==== */
.card, .cta-btn, .testimonial-card, .feature-item, .cookie-btn, .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
    transition: box-shadow 0.16s, transform 0.15s, background 0.17s, color 0.14s;
}

/* ==== VISUAL HIERARCHY & SHADOWS ==== */
.card, .testimonial-card, .feature-item, .text-section {
    box-shadow: 0 2px 24px 0 rgba(24,74,58,0.07);
    border-radius: 16px;
}
.testimonial-card {
    background: #fff;
    color: #184A3A;
}
.text-section {
    background: #fff;
}
.feature-item {
    background: #F8F5F2;
}

/* ==== MISC ==== */
::selection {
    background: #E6B47A;
    color: #184A3A;
}

/* ==== UTILITIES ==== */
.d-none {
    display: none !important;
}

/* Ensure minimum spacing between all content cards/sections */
.section > .container > .content-wrapper > *,
.section > .container > .content-wrapper > .testimonial-card {
    margin-bottom: 20px;
}
.section > .container > .content-wrapper > *:last-child {
    margin-bottom: 0;
}
.card + .card {
    margin-top: 20px;
}

/* ==== END OF CSS ==== */
