/* === 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, 
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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main {
    display: block;
}
body {
    line-height: 1.6;
    background: #FFF8F4;
    font-family: 'Roboto', Arial, sans-serif;
    color: #183153;
    min-height: 100vh;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: #279352;
    text-decoration: none;
    transition: color 0.18s;
}
a:hover, a:focus {
    color: #183153;
    text-decoration: underline;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
}
/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #183153;
}
h1 {
    font-size: 2.6rem;
    margin-bottom: 24px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}
h4,
h5,
h6 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
p, li {
    font-size: 1rem;
}
strong {
    color: #279352;
}

/* === CONTAINER & LAYOUT === */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #FFF8F4;
    border-radius: 28px;
    box-shadow: 0 3px 18px 0 rgba(24,49,83,0.06);
}
@media (max-width: 768px) {
    .section {
        padding: 24px 8px;
        margin-bottom: 38px;
    }
    .container {
        padding: 0 8px;
    }
}

/* === FLEXBOX PATTERNS === */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 10px 0 rgba(39,147,82,0.12);
    padding: 28px;
    flex: 1 1 320px;
    min-width: 260px;
    transition: box-shadow 0.16s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.card:hover {
    box-shadow: 0 4px 24px 0 rgba(39,147,82,0.19);
}
.content-grid, .features-grid, .team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.features-grid > div,
.team-cards > div {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 1px 8px 0 rgba(24,49,83,0.07);
    padding: 22px 18px 18px 18px;
    min-width: 230px;
    flex: 1 1 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: box-shadow 0.14s;
}
.features-grid > div:hover,
.team-cards > div:hover {
    box-shadow: 0 4px 24px 0 rgba(39,147,82,0.18);
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .content-grid, .features-grid, .team-cards, .text-image-section {
        flex-direction: column;
        gap: 18px;
    }
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    background: #FFEEDB;
    box-shadow: 0 2px 10px 0 rgba(24,49,83,0.06);
    margin-bottom: 20px;
    color: #183153;
    font-size: 1.08rem;
    max-width: 580px;
    min-width: 236px;
    transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card p {
    margin-bottom: 0;
}
.testimonial-card span {
    font-size: 0.97rem;
    color: #279352;
    font-weight: 600;
}
.testimonial-card:hover {
    box-shadow: 0 6px 22px 0 rgba(24,49,83,0.19);
    transform: scale(1.025);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
/* Blog page preview cards */
.blog-preview {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 1.5px 8px 0 rgba(24,49,83,0.09);
    padding: 27px 20px 20px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    transition: box-shadow 0.15s;
}
.blog-preview:hover {
    box-shadow: 0 3px 20px 0 rgba(39,147,82,0.13);
}
.thank-you-next {
    margin-top: 24px;
    background: #EAECEF;
    border-radius: 16px;
    padding: 18px 16px;
}

/* === HEADER & NAVIGATION === */
header {
    background: #183153;
    color: #fff;
    width: 100%;
    box-shadow: 0 2px 14px 0 rgba(17,38,86,0.10);
    position: relative;
    z-index: 10;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    padding: 16px 0 12px 0;
}
nav > a img {
    height: 42px;
    width: auto;
    border-radius: 12px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}
nav ul li a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    padding: 7px 14px;
    border-radius: 10px;
    transition: background 0.16s, color 0.16s;
}
nav ul li a:hover, nav ul li a:focus {
    background: #279352;
    color: #fff;
    text-decoration: none;
}
.cta-btn {
    background: #279352;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 23px;
    font-size: 1.09rem;
    box-shadow: 0 2px 12px 0 rgba(39,147,82,0.16);
    transition: background 0.15s, box-shadow 0.15s, transform 0.13s;
    border: none;
    cursor: pointer;
    margin-left: 18px;
    outline: none;
    display: inline-block;
    text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
    background: #183153;
    color: #fff;
    box-shadow: 0 4px 20px 0 rgba(24,49,83,0.14);
    transform: translateY(-2px) scale(1.04);
}
/* Hamburger menu button */
.mobile-menu-toggle {
    display: none;
    background: #FFE1CE;
    color: #183153;
    border: none;
    border-radius: 10px;
    font-size: 2.3rem;
    padding: 3px 14px 6px 14px;
    cursor: pointer;
    position: absolute;
    right: 22px;
    top: 17px;
    z-index: 1020;
    transition: background 0.14s;
}
.mobile-menu-toggle:hover {
    background: #FFD2AE;
}
@media (max-width: 1024px) {
    nav ul {
        display: none;
    }
    .cta-btn {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(24,49,83, 0.98);
    box-shadow: 0 8px 36px rgba(24,49,83,0.28);
    transform: translateX(-100%);
    transition: transform 0.34s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    margin-left: auto;
    background: transparent;
    color: #fff;
    font-size: 2.2rem;
    border: none;
    padding: 13px 20px 2px 0;
    cursor: pointer;
    outline: none;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 32px 0 0 34px;
    align-items: flex-start;
}
.mobile-nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.23rem;
    padding: 9px 17px 7px 0px;
    border-radius: 8px;
    transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #279352;
    color: #FFF8F4;
}
@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(120deg, #fff8f4 70%, #FFD2AE 110%);
    padding: 52px 0 38px 0;
    margin-bottom: 0;
    border-radius: 0 0 44px 44px;
}
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 275px;
    padding-top: 18px;
    padding-bottom: 18px;
}
.hero .content-wrapper {
    align-items: center;
    text-align: center;
    gap: 19px;
}
.hero h1 {
    color: #183153;
    font-size: 2.7rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', Arial, sans-serif;
}
.hero p {
    font-size: 1.12rem;
    color: #183153;
    margin-bottom: 16px;
    max-width: 650px;
}
@media (max-width: 640px) {
    .hero {
        padding: 32px 0 22px 0;
        border-radius: 0 0 30px 30px;
    }
    .hero h1 {
        font-size: 1.73rem;
    }
    .hero .container {
        padding-top: 6px;
        padding-bottom: 6px;
    }
}

/* === PRICES === */
.price {
    font-weight: 700;
    color: #279352;
    background: #fff8f4;
    border-radius: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    padding: 5px 14px;
    font-size: 1.07rem;
    margin-top: 8px;
}

/* === FOOTER === */
footer {
    background: #183153;
    color: #fff;
    padding: 44px 0 15px 0;
    border-radius: 36px 36px 0 0;
    font-size: 1rem;
    margin-top: 50px;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 8px;
}
footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: flex-start;
    padding: 0;
}
footer nav a {
    color: #fff;
    opacity: 0.98;
    font-size: 1rem;
    border-radius: 8px;
    transition: background 0.12s, color 0.12s;
    padding: 4px 10px;
}
footer nav a:hover, footer nav a:focus {
    background: #279352;
}
.footer-contact p {
    margin: 0 0 7px 0;
}
.footer-contact strong {
    color: #FFD2AE;
}
footer img {
    height: 34px;
    border-radius: 10px;
    margin-bottom: 7px;
}
footer > p {
    margin: 20px 0 0 0;
    text-align: center;
    color: #FFD2AE;
    opacity: 0.85;
    font-size: 0.99rem;
}
@media (max-width: 900px) {
    footer .container {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    footer nav {
        margin: 0 0 14px 0;
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* === TEXT SECTION === */
.text-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 14px;
}
.text-section ul {
    padding-left: 24px;
    margin: 10px 0;
}
.text-section li {
    padding-bottom: 5px;
}
.map-embed {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    margin: 13px 0 0 0;
    box-shadow: 0 1px 7px 0 rgba(24,49,83,0.08);
}
.map-embed p {
    margin: 0;
    font-size: 1rem;
}
@media (max-width: 700px) {
    .map-embed {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* === FORM STYLES (for potential forms) === */
input, textarea, select {
    border: 1.5px solid #EABC97;
    border-radius: 10px;
    background: #fff;
    padding: 11px 13px;
    font-size: 1.06rem;
    margin-bottom: 12px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 7px;
    transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
    border-color: #279352;
    outline: 2px solid #FFD2AE;
}
label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    margin-bottom: 3px;
}

/* === BUTTONS === */
button {
    cursor: pointer;
    border: none;
    border-radius: 18px;
    background: #279352;
    color: #fff;
    font-size: 1.06rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    padding: 9px 22px;
    transition: background 0.14s, box-shadow 0.14s, transform 0.14s;
    box-shadow: 0 2px 10px 0 rgba(39,147,82,0.09);
}
button:hover, button:focus {
    background: #183153;
    box-shadow: 0 4px 20px 0 rgba(39,147,82,0.15);
    transform: translateY(-1px) scale(1.04);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: #183153;
    color: #fff;
    box-shadow: 0 -2px 24px 0 rgba(24,49,83,0.22);
    z-index: 13000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 18px 18px 18px;
    gap: 30px;
    font-size: 1.05rem;
    border-radius: 22px 22px 0 0;
    animation: slideUpBanner 0.7s cubic-bezier(0.44, 0.01, 0.31, 1.19);
}
@keyframes slideUpBanner {
    from { transform: translateY(110%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.cookie-btn, .cookie-btn-primary, .cookie-btn-secondary {
    border: none;
    border-radius: 16px;
    padding: 7px 19px;
    font-size: 1.08rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.13s, color 0.13s, box-shadow 0.13s;
    margin-left: 0px;
}
.cookie-btn-primary {
    background: #279352;
    color: #fff;
    box-shadow: 0 2px 9px 0 rgba(39,147,82,0.15);
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
    background: #FFD2AE;
    color: #183153;
}
.cookie-btn-secondary {
    background: #fff8f4;
    color: #279352;
    border: 2px solid #279352;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
    background: #279352;
    color: #fff8f4;
}
.cookie-btn {
    background: #EAECEF;
    color: #183153;
}
.cookie-btn:hover, .cookie-btn:focus {
    background: #FFD2AE;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
    position: fixed;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(24,49,83,0.58);
    z-index: 14000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: fadeInModal 0.34s;
}
@keyframes fadeInModal {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.cookie-modal {
    background: #fff;
    color: #183153;
    border-radius: 22px;
    max-width: 405px;
    width: 95vw;
    padding: 30px 24px 22px 24px;
    box-shadow: 0 4px 32px 0 rgba(24,49,83,0.24);
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.09rem;
    animation: popModal 0.26s cubic-bezier(0.48,1.00,0.68,1.09);
    position: relative;
}
@keyframes popModal {
    from { opacity: 0; transform: scale(0.93); }
    to   { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
    position: absolute;
    right: 19px;
    top: 13px;
    background: transparent;
    color: #279352;
    font-size: 1.55rem;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    padding: 1px 7px 2px 7px;
    transition: background 0.1s, color 0.1s;
}
.cookie-modal-close:hover {
    background: #FFD2AE;
    color: #183153;
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #EAECEF;
    border-radius: 14px;
    padding: 7px 14px;
    font-size: 1.01rem;
    color: #183153;
    font-family: 'Roboto', Arial, sans-serif;
}
.cookie-toggle {
    appearance: none;
    width: 43px;
    height: 22px;
    background: #FFD2AE;
    border-radius: 13px;
    position: relative;
    outline: none;
    border: 1px solid #EABC97;
    transition: background 0.14s;
    margin-right: 6px;
}
.cookie-toggle:checked {
    background: #279352;
    border: 1px solid #279352;
}
.cookie-toggle::before {
    content: '';
    display: block;
    width: 19px; height: 19px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 1.5px;
    left: 2px;
    transition: left 0.18s;
    box-shadow: 0 0.5px 2px #AAA6;
}
.cookie-toggle:checked::before {
    left: 21px;
}
.cookie-category.always-on .cookie-toggle {
    pointer-events: none;
    background: #B5B9C4;
    border: 1px solid #B5B9C4;
    opacity: 0.78;
}
.cookie-category.always-on {
    opacity: 0.70;
}

/* Responsive Cookie Banner */
@media (max-width: 680px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        font-size: 1rem;
        padding: 18px 7px 17px 7px;
    }
    .cookie-banner__actions {
        gap: 7px;
    }
}

/* === UTILITIES === */
.rounded {
    border-radius: 18px !important;
}
.shadow {
    box-shadow: 0 3px 18px 0 rgba(24,49,83,0.08) !important;
}
.bg-accent {
    background: #EAECEF !important;
}
.bg-primary {
    background: #183153 !important;
    color: #fff !important;
}
.bg-secondary {
    background: #279352 !important;
    color: #fff !important;
}
.text-primary {
    color: #183153 !important;
}
.text-secondary {
    color: #279352 !important;
}
.text-accent {
    color: #FFD2AE !important;
}
.text-center {
    text-align: center !important;
}
.flex-row {
    display: flex;
    flex-direction: row;
    gap: 18px;
}
.flex-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* === SPACING === */
.mt-24 { margin-top: 24px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-60 { margin-bottom: 60px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pt-24 { padding-top: 24px !important; }
.px-18 { padding-left: 18px !important; padding-right: 18px !important; }

/* === CUSTOM FOCUS STYLES === */
a:focus, button:focus, input:focus, .cta-btn:focus {
    outline: 2px solid #FFD2AE;
    outline-offset: 2px;
}

/* === MICRO-ANIMATIONS & TRANSITIONS === */
.card, .features-grid > div, .team-cards > div, .blog-preview, .testimonial-card, .cta-btn, button {
    transition: box-shadow 0.17s, background 0.15s, color 0.15s, transform 0.15s;
}

/* === SCROLLBAR (subtle, for desktop) === */
@media (hover: hover) {
    ::-webkit-scrollbar {
        width: 9px;
        background: #FFEEDB;
        border-radius: 5px;
    }
    ::-webkit-scrollbar-thumb {
        background: #FFD2AE;
        border-radius: 5px;
    }
}

/* === HIDE ON DESKTOP FOR MOBILE ELEMENTS === */
@media (min-width: 1025px) {
    .mobile-menu-toggle,
    .mobile-menu {
        display: none !important;
    }
}

/* === PRINT/VISIBILITY === */
@media print {
    .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay {
        display: none !important;
    }
}
