/* === CSS 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-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-size: 16px;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    min-height: 100vh;
    background: linear-gradient(120deg, #f7f7f9 0%, #e9e1d9 100%);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: #2E3C48;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: #2E3C48;
    text-decoration: none;
    transition: color 0.18s cubic-bezier(.6,.01,.25,1);
}
a:hover, a:focus {
    color: #E3C08B;
    outline: none;
}
ul, ol {
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: #2E3C48;
    margin-bottom: 16px;
    line-height: 1.14;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}
h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
h4, h5, h6 {
    font-size: 1.15rem;
}
p, ul, ol {
    font-size: 1rem;
    margin-bottom: 16px;
}
strong {
    font-weight: 700;
    color: #2E3C48;
}
em {
    font-style: italic;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 18px 0 rgba(46,60,72,0.07);
}
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.text-section {
    max-width: 720px;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(46,60,72,.06);
    padding: 28px 24px 24px 24px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 260px;
    flex: 1 1 320px;
    transition: box-shadow .22s cubic-bezier(.6,.01,.25,1), transform .18s;
}
.card:hover {
    box-shadow: 0 4px 26px 0 rgba(46,60,72,0.14);
    transform: translateY(-4px) scale(1.02);
    z-index: 1;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    border-left: 4px solid #E3C08B;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 6px rgba(46,60,72,0.06);
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 14px rgba(46,60,72,0.10);
    color: #2E3C48;
    font-size: 1.13rem;
    border-left: 5px solid #E3C08B;
    min-width: 0;
    overflow-wrap: break-word;
}
.testimonial-card strong, .testimonial-card div:first-child {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2E3C48;
    font-size: 1.08rem;
    margin-right: 12px;
}
.cta-btn {
    display: inline-block;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 1.12rem;
    font-weight: 600;
    text-align: center;
    color: #2E3C48;
    background: linear-gradient(90deg, #e3c08b 0%, #f7efe3 100%);
    border: none;
    border-radius: 26px;
    padding: 14px 38px;
    margin-top: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 14px 0 rgba(46,60,72,0.07);
    letter-spacing: 0.01em;
    transition: background .2s, color .17s, transform .18s;
}
.cta-btn:hover, .cta-btn:focus {
    background: linear-gradient(90deg, #f7efe3 0%, #e3c08b 100%);
    color: #2E3C48;
    transform: translateY(-2px) scale(1.03);
}

/* === HEADER === */
header {
    background: linear-gradient(90deg, #fff 60%, #f7efe3 100%);
    box-shadow: 0 2px 10px rgba(46,60,72,0.03);
    padding: 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 40;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 16px 0;
    gap: 22px;
}
header a img {
    height: 42px;
    width: auto;
    display: block;
    margin-right: 42px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.main-nav a {
    font-size: 1rem;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: 500;
    color: #2E3C48;
    padding: 6px 12px;
    border-radius: 12px;
    transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
    background: #e3c08b20;
    color: #E3C08B;
}
.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 2rem;
    color: #2E3C48;
    display: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    margin-left: 10px;
    transition: background .18s, color .18s;
    z-index: 46;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #e3c08b13;
    color: #E3C08B;
}
/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #2E3C48f5;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.36s cubic-bezier(0.71, 0.09, 0.34, 0.97), opacity 0.24s;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
    box-sizing: border-box;
}
.mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
}
.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #fff;
    padding: 12px;
    margin-top: 16px;
    margin-right: 22px;
    border-radius: 50%;
    cursor: pointer;
    transition: background .18s, color .18s;
    z-index: 201;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
    background: #e3c08b22;
    color: #E3C08B;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 40px 0 0 42px;
    gap: 18px;
}
.mobile-nav a {
    font-size: 1.23rem;
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    padding: 12px 0 9px 8px;
    border-radius: 12px;
    min-width: 200px;
    transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    color: #E3C08B;
    background: #e3c08b22;
}

@media (max-width: 1024px) {
    header .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    .main-nav {
        gap: 13px;
    }
}
@media (max-width: 900px) {
    header .container {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 12px 8px 12px 0;
    }
    .main-nav {
        gap: 10px;
    }
}
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
    }
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .cta-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}
@media (max-width: 540px) {
    header .container {
        padding: 7px 6px 7px 0;
    }
    header a img {
        height: 33px;
    }
    .cta-btn {
        padding: 10px 14px;
    }
}

/* === BREADCRUMBS (Global styling if needed) === */
.breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 0.97rem;
    margin-bottom: 16px;
    color: #6a717c;
}
.breadcrumbs a {
    color: #2E3C48;
}

/* === LAYOUT & SPACING === */
main {
    width: 100%;
    margin: 0 auto 60px auto;
    padding-top: 16px;
    position: relative;
}
section {
    margin-bottom: 60px;
    padding: 40px 20px;
    border-radius: 20px;
    background: linear-gradient(100deg, #fff 73%, #f7efe3 100%);
    box-shadow: 0 2px 18px 0 rgba(46,60,72,0.07);
}
@media (max-width: 850px) {
    .section, section {
        padding: 28px 9px;
        margin-bottom: 40px;
        border-radius: 13px;
    }
}
@media (max-width: 600px) {
    .container {
        padding: 0 8px;
    }
    section, .section {
        padding: 14px 5px;
        border-radius: 7px;
        margin-bottom: 34px;
    }
}

/* FLEX DIRECTION COLUMN ON MOBILE FOR TEXT-IMAGE SECTIONS */
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
        gap: 20px;
    }
}

/* === BUTTONS & INTERACTIONS === */
button, .cta-btn, input[type="submit"] {
    font-family: 'Roboto', Arial, sans-serif;
    cursor: pointer;
    outline: none;
    border: none;
}
button:focus, .cta-btn:focus, input[type="submit"]:focus {
    outline: 2px solid #2E3C48;
}

/* === HERO SECTION === */
.headline {
    font-size: 1.25rem;
    font-weight: 600;
    color: #E3C08B;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}
.subheadline {
    color: #2E3C48;
    font-size: 1.01rem;
    margin-bottom: 16px;
}
@media (max-width: 625px) {
    h1 {
        font-size: 1.7rem;
        margin-bottom: 13px;
    }
    h2 {
        font-size: 1.26rem;
        margin-bottom: 9px;
    }
    .headline {
        font-size: 1.06rem;
    }
}

/* === FOOTER === */
footer {
    background: linear-gradient(90deg, #f7efe3 20%, #fff 100%);
    color: #2E3C48;
    font-size: 0.97rem;
    padding: 0 0 22px 0;
    position: relative;
    z-index: 6;
    border-top: 1px solid #e3c08b25;
}
footer .container {
    padding: 0 16px;
}
footer .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px 0 10px 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-nav a {
    font-size: 0.97rem;
    color: #2E3C48;
    margin-bottom: 4px;
    transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: #E3C08B;
}
.footer-contact p {
    margin-bottom: 2px;
    color: #2E3C48;
    line-height: 1.45;
    font-size: 0.95rem;
}
.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 8px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 1px 6px rgba(46,60,72,0.08);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    transition: background .21s, box-shadow .21s;
}
.footer-social a:hover, .footer-social a:focus {
    background: #e3c08b27;
    box-shadow: 0 2px 11px rgba(227,192,139,0.19);
}
.footer-company {
    color: #2E3C48;
    font-size: 0.91rem;
    margin-top: 12px;
}
@media (max-width: 900px) {
    footer .content-wrapper {
        gap: 17px;
        flex-wrap: wrap;
        padding: 14px 0 2px 0;
    }
}
@media (max-width: 540px) {
    footer .content-wrapper {
        flex-direction: column;
        gap: 13px;
        padding: 7px 0 2px 0;
    }
    .footer-social {
        margin-bottom: 5px;
    }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: linear-gradient(90deg, #fff 57%, #f7efe3 100%);
    box-shadow: 0 -4px 25px 0 rgba(46,60,72,0.11);
    padding: 20px 18px 12px 18px;
    border-radius: 17px 17px 0 0;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .32s, transform .36s;
}
.cookie-banner.hide {
    opacity: 0;
    transform: translateY(120%);
    pointer-events: none;
}
.cookie-banner p {
    color: #2E3C48;
    font-size: 1.05rem;
}
.cookie-banner .cookie-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.cookie-banner button {
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 15px;
    background: #fff;
    color: #2E3C48;
    border: 1px solid #E3C08B;
    box-shadow: 0 1px 6px rgba(46,60,72,0.04);
    transition: background .18s, color .18s, border .18s;
}
.cookie-banner button.accept {
    background: #E3C08B;
    color: #2E3C48;
    border: 1px solid #E3C08B;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
    background: #2E3C48;
    color: #E3C08B;
}
.cookie-banner button.reject {
    border: 1px solid #ccc;
    background: #fff;
    color: #2E3C48;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
    border: 1px solid #E3C08B;
    color: #E3C08B;
}
.cookie-banner button.settings {
    background: #fff;
    color: #2E3C48;
    border: 1px solid #E3C08B;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
    background: #E3C08B;
    color: #2E3C48;
}
@media (max-width: 540px) {
    .cookie-banner {
        padding: 11px 6px 6px 6px;
        border-radius: 8px 8px 0 0;
    }
    .cookie-banner .cookie-btns {
        gap: 9px;
    }
}

/* === COOKIE CONSENT MODAL === */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 330;
    background: rgba(46,60,72,0.62);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s;
}
.cookie-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.cookie-modal-content {
    background: linear-gradient(100deg, #fff 73%, #f7efe3 100%);
    padding: 36px 26px 26px 26px;
    border-radius: 16px;
    color: #2E3C48;
    box-shadow: 0 7px 38px 0 rgba(46,60,72,0.18);
    max-width: 380px;
    width: 95vw;
    min-width: 250px;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cookie-modal-content h3 {
    margin-bottom: 11px;
    font-size: 1.23rem;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
}
.cookie-category label {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.06rem;
    color: #2E3C48;
    font-weight: 500;
}
.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #E3C08B;
}
.cookie-modal-footer {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 4px;
}
.cookie-modal-content button {
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 600;
    border-radius: 10px;
    padding: 8px 16px;
    outline: none;
    border: 1px solid #e3c08b55;
    background: #fff;
    color: #2E3C48;
    transition: background .18s, color .18s, border .18s;
}
.cookie-modal-content button.primary {
    background: #E3C08B;
    color: #2E3C48;
    border: 1px solid #E3C08B;
}
.cookie-modal-content button.primary:hover, .cookie-modal-content button.primary:focus {
    background: #2E3C48;
    color: #fff;
}
.cookie-modal-content button.secondary:hover, .cookie-modal-content button.secondary:focus {
    border: 1px solid #E3C08B;
    color: #E3C08B;
}
.cookie-modal-content .close-modal {
    position: absolute;
    top: 12px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 1.46rem;
    cursor: pointer;
    color: #2E3C48;
}

/* === HELPERS & EFFECTS === */
.shadow-sm {
    box-shadow: 0 1px 8px rgba(46,60,72,0.07);
}
.shadow-md {
    box-shadow: 0 2px 18px 0 rgba(46,60,72,0.10);
}
.rounded {
    border-radius: 16px;
}
@media (max-width: 768px) {
    .card-container, .content-grid {
        gap: 13px;
    }
    .card {
        margin-bottom: 13px;
        min-width: 80vw;
        padding: 18px 10px 14px 10px;
    }
}

/* === ACCESSIBILITY / FOCUS STATES === */
a:focus, button:focus, .cta-btn:focus {
    outline: 2px solid #E3C08B;
    outline-offset: 1px;
    box-shadow: 0 2px 9px #e3c08b55;
}

/* === VISUAL SHADOWS / EFFECTS FOR MODERN APPEARANCE === */
.card, .testimonial-card, .feature-item {
    box-shadow: 0 2px 14px 0 rgba(46,60,72,0.10);
}
.card:hover, .testimonial-card:hover, .feature-item:hover {
    box-shadow: 0 7px 30px rgba(227,192,139,0.15);
    transition: box-shadow .20s;
}

/* === TYPOGRAPHY SCALE === */
.display-1 { font-size: 2.45rem; font-family: 'Playfair Display', serif; font-weight: 700; }
.display-2 { font-size: 2rem; font-family: 'Playfair Display', serif; font-weight: 700; }
.text-lg { font-size: 1.17rem; }
.text-sm { font-size: 0.99rem; }

/* === COLOR UTILITY === */
.bg-primary { background: #2E3C48; color: #fff; }
.bg-secondary { background: #E3C08B; color: #fff; }
.bg-accent { background: #fff; color: #2E3C48; }
.text-primary { color: #2E3C48; }
.text-secondary { color: #E3C08B; }

/* === FORM ELEMENTS (If present) === */
input, textarea, select {
    font-family: 'Roboto', Arial, sans-serif;
    border-radius: 8px;
    border: 1px solid #e3c08b85;
    padding: 8px 12px;
    font-size: 1rem;
    margin-bottom: 13px;
    background: #fff;
    color: #2E3C48;
    outline: none;
    transition: border .14s, box-shadow .17s;
}
input:focus, textarea:focus, select:focus {
    border: 1.5px solid #E3C08B;
    box-shadow: 0 2px 8px #e3c08b28;
}

/* === ADDITIONAL: Animations === */
@media (prefers-reduced-motion: no-preference) {
    .card, .testimonial-card, .cta-btn, .feature-item {
      transition: box-shadow .20s, transform .18s, background .18s, color .18s;
    }
    .mobile-menu, .cookie-banner {
      transition: transform .32s, opacity .32s;
    }
    .mobile-menu-close, .mobile-menu-toggle {
      transition: background .18s, color .18s;
    }
}

/* === RESPONSIVE GAPS ENSURE NO OVERLAP === */
.card-container, .content-grid, .footer-social, .feature-item, .testimonial-card, .text-image-section {
    gap: 20px;
}
@media (max-width: 650px) {
    .card-container, .content-grid, .footer-social {
        gap: 10px;
    }
    .section, section { padding: 7px 1px; }
}

/* === DARK MODE READY BASE (Not activated by default) === */ 
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(120deg, #22282e 0%, #35363a 100%);
        color: #3a3a3a;
    }
}

/* === PRINT SAFETY === */
@media print {  
    .cookie-banner, .mobile-menu, .cookie-modal, header, footer { display:none !important; } 
    section, .section { background: #fff !important; box-shadow: none !important; }
}
