/* =========================
   CSS RESET & NORMALIZATION
   ========================= */
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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}
body {
    line-height: 1.5;
    background: #fff;
    color: #19202A;
    min-height: 100vh;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 16px;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* =========================
   BRAND FONTS & COLORS
   ========================= */
:root {
    --primary: #1B3A69;
    --secondary: #4AB98F;
    --accent: #F2F5F8;
    --focus: #1B3A69;
    --card-bg: #FAFCFE;
    --danger: #D7263D;
    --success: #4AB98F;
    --text-dark: #19202A;
    --text-light: #ffffff;
    --testimonial-bg: #F7FAFF;
    --testimonial-shadow: 0 6px 24px -6px rgba(27,58,105,0.11);
    --shadow-card: 0 4px 18px -6px rgba(27, 58, 105, 0.08), 0 1.5px 8px rgba(27,58,105,0.05);
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 32px;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 0.012em;
    line-height: 1.14;
}

h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; }

p, li, label, input, textarea, button {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: var(--text-dark);
    font-size: 1rem;
}

strong {
    color: var(--secondary);
    font-weight: 700;
}

/* =========================
   GENERAL SECTION STYLES
   ========================= */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
    box-sizing: border-box;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: transparent;
}
@media (max-width: 900px) {
    .container {
        max-width: 99vw;
    }
    .section {
        padding: 28px 8px;
    }
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    margin-top: 18px;
}
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 18px;
    }
}

.text-section {
    margin-bottom: 24px;
    padding: 18px 0 0 0;
    color: var(--text-dark);
}

.text-section h2, .text-section h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.text-section ul {
    padding-left: 22px;
    margin-bottom: 14px;
    list-style-type: disc;
}
.text-section ul li {
    margin-bottom: 6px;
    position: relative;
    font-size: 1rem;
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    background: var(--accent);
    box-shadow: 0 4px 20px rgba(27,58,105, 0.08);
    padding: 10px 0;
    z-index: 1001;
    position: relative;
}
header a img {
    height: 44px;
    margin-right: 24px;
    border-radius: var(--radius-sm);
}
header nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}
header nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    transition: color .18s;
    position: relative;
    padding: 2px 6px;
    border-radius: 5px;
}
header nav a:hover,
header nav a:focus {
    background: var(--secondary);
    color: var(--text-light);
    outline: none;
}
.cta-primary, .cta-secondary {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--radius-sm);
    padding: 11px 28px;
    font-size: 1.05rem;
    box-shadow: 0 2px 9px -2px rgba(27,58,105,0.08);
    transition: background .22s, color .22s, box-shadow .22s, transform .13s;
    margin-left: 28px;
    margin-right: 14px;
    cursor: pointer;
    display: inline-block;
    outline: none;
}
.cta-primary {
    background: var(--primary);
    color: var(--text-light);
}
.cta-primary:hover, .cta-primary:focus {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 5px 18px -6px var(--secondary), 0 2px 8px #1B3A691a;
    transform: translateY(-2px) scale(1.05) rotate(-1.4deg);
}
.cta-secondary {
    background: var(--secondary);
    color: var(--text-light);
}
.cta-secondary:hover, .cta-secondary:focus {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 13px -7px var(--primary), 0 1px 6px #1B3A691a;
    transform: translateY(-1px) scale(1.03) rotate(1.4deg);
}

.mobile-menu-toggle {
    display: none;
    background: var(--secondary);
    color: var(--text-light);
    font-size: 2rem;
    padding: 6px 14px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    margin: 0 6px 0 18px;
    box-shadow: 0 2px 6px #1B3A6922;
    transition: background 0.19s;
    z-index: 1002;
}
.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary);
}
@media (max-width: 992px) {
    header nav {
        display: none;
    }
    .cta-primary {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-block;
    }
}

/* =========================
   MOBILE MENU NAVIGATION
   ========================= */
.mobile-menu {
    position: fixed;
    left: 0; top: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(27,58,105, 0.98);
    z-index: 1003;
    transform: translateX(-110vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .36s cubic-bezier(0.85,0,0.15,1);
    box-shadow: 0 10px 64px rgba(27,58,105,0.22);
    visibility: hidden;
}
.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
}
.mobile-menu-close {
    background: none;
    color: #fff;
    border: none;
    font-size: 2.1rem;
    position: absolute;
    top: 18px;
    right: 30px;
    cursor: pointer;
    z-index: 1004;
    padding: 4px 14px;
    border-radius: 7px;
    transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: rgba(74,185,143,0.17);
    outline: 2px solid #fff;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    padding: 84px 0 0 38px;
    font-size: 1.3rem;
}
.mobile-nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 9px;
    margin-bottom: 9px;
    transition: background 0.16s, color 0.16s, transform 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--secondary);
    color: #1B3A69;
    transform: translateX(7px) scale(1.03) rotate(-1.2deg);
    outline: none;
}
@media (min-width: 993px) {
    .mobile-menu {display: none !important;}
}

/* =========================
   FOOTER
   ========================= */
footer {
    background: var(--primary);
    color: #fff;
    padding: 40px 0 30px;
    margin-top: 70px;
    font-size: 1rem;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    box-shadow: 0 -6px 32px -15px var(--primary)11;
}
footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 16px;
}
footer nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    opacity: 0.93;
    transition: color .17s;
    position: relative;
    padding: 3.5px 7px;
    border-radius: 6px;
}
footer nav a:hover,footer nav a:focus {
    background: var(--secondary);
    color: var(--primary);
    outline: none;
}
.contact-details {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}
.contact-details p {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    margin-bottom: 0;
}
.contact-details img {
    width: 22px;
    height: 22px;
    margin-right: 3px;
    filter: brightness(1.6) grayscale(0.3);
}
@media (max-width: 640px) {
    footer {
        border-radius: 0;
        padding: 28px 0 18px;
        font-size: 0.95rem;
    }
    .contact-details {
        gap: 5px;
    }
}

/* =========================
   CARD & FLEX CONTAINERS
   ========================= */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    padding: 26px 22px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
    position: relative;
    transition: box-shadow 0.22s, transform 0.2s;
    min-width: 260px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.card:hover, .card:focus-within {
    box-shadow: 0 10px 32px -6px var(--primary), 0 2px 14px #1B3A6940;
    transform: translateY(-4px) scale(1.03) rotate(-0.8deg);
    z-index: 2;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.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;
}
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .content-grid { flex-direction: column; }
}

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

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--testimonial-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--testimonial-shadow);
    padding: 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.18s, transform 0.13s;
    border-left: 6.5px solid var(--secondary);
    min-width: 230px;
    max-width: 600px;
}
.testimonial-card p {
    font-size: 1.14rem;
    line-height: 1.5;
    color: #1B3A69;
    margin-bottom: 6px;
}
.testimonial-card div {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    opacity: 0.88;
}
.testimonial-card strong {
    color: var(--secondary);
}
.testimonial-card:hover, .testimonial-card:focus-within {
    box-shadow: 0 10px 35px -7px var(--secondary), 0 4px 22px #4AB98F30;
    transform: translateY(-3px) scale(1.02) rotate(-1deg);
}

.blog-post {
    background: #fff9f0;
    padding: 22px 22px 20px 22px;
    border-radius: var(--radius-md);
    min-width: 250px;
    flex: 1 1 300px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px #1B3A6915;
    transition: box-shadow 0.17s, transform 0.14s;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.blog-post h3 {
    font-size: 1.18rem;
    color: var(--primary);
    margin-bottom: 5px;
}
.blog-post a {
    color: var(--secondary);
    font-weight: 700;
    text-decoration: underline;
    transition: color .1s;
}
.blog-post a:hover {
    color: var(--primary);
}
.blog-post:hover, .blog-post:focus-within {
    box-shadow: 0 9px 28px -7px var(--secondary), 0 2px 12px #1B3A6955;
    transform: translateY(-2px) scale(1.01) rotate(1.7deg);
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.team-list > div {
    background: #eed0ff11;
    border-left: 6px solid var(--secondary);
    padding: 22px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    flex: 1 1 260px;
    box-shadow: 0 2.5px 10.5px #1B3A691B;
    min-width: 210px;
    transition: box-shadow .13s;
}
.team-list strong { color: var(--primary); font-size: 1.01rem; }
.team-list p { margin-top: 8px; font-size: 1rem; }

@media (max-width: 700px) {
    .team-list { flex-direction: column; }
}

/* =========================
   UL, OL, ICONS IN LISTS
   ========================= */
section ul, section ol {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 18px;
    list-style: none;
}
section ul li, section ol li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #f9fcff;
    border-radius: var(--radius-md);
    box-shadow: 0 1.5px 5.5px #1B3A6914;
    padding: 18px 14px 20px 16px;
    margin-bottom: 20px;
    min-width: 180px;
    flex: 1 1 250px;
    gap: 7px;
    transition: box-shadow .14s, transform .12s;
    position: relative;
    font-size: 1rem;
    color: #1B3A69;
}
ul li img, ol li img {
    width: 33px;
    height: 33px;
    margin-bottom: 8px;
}
ul li:hover, ol li:hover {
    box-shadow: 0 6px 24px -8px var(--secondary), 0 2px 8px #4AB98F22;
    transform: translateY(-3px) scale(1.01) rotate(-1.2deg);
}

/* =========================
   FORMS & INPUTS
   ========================= */
form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 520px;
    margin: 0 auto;
    background: #FAFCFE;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px #1B3A6915;
    padding: 36px 20px;
    position: relative;
}
form label {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
    font-family: 'Montserrat', Arial, sans-serif;
}
form input, form textarea {
    font-size: 1rem;
    border: 1.8px solid #e0e6ee;
    border-radius: var(--radius-sm);
    padding: 13px 12px;
    transition: border 0.16s, box-shadow 0.13s;
    background: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    width: 100%;
}
form input:focus, form textarea:focus {
    border-color: var(--secondary);
    outline: 2px solid var(--secondary);
}
form button[type="submit"], form button[type="button"] {
    background: var(--secondary);
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: .03em;
    border-radius: var(--radius-sm);
    border: none;
    padding: 12px 28px;
    margin-top: 10px;
    cursor: pointer;
    align-self: flex-end;
    box-shadow: 0 2px 10px #4AB98F14;
    transition: background 0.17s, color 0.13s, box-shadow 0.13s, transform 0.13s;
}
form button[type="submit"]:hover, form button[type="button"]:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px) scale(1.03);
}
.privacy-note {
    font-size: 0.93rem;
    color: #555;
    margin-top: -8px;
}
.privacy-note a {
    color: var(--secondary);
    text-decoration: underline;
}
.privacy-note a:hover {
    color: var(--primary);
}

input[type="email"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #8a99b1;
    opacity: 1;
    font-size: 1rem;
}
input[type="email"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #8a99b1;
    opacity:1;
}
input[type="email"]::placeholder,
input[type="text"]::placeholder, 
textarea::placeholder {
    color: #8a99b1;
    opacity: 1;
}

/* =========================
   RESPONSIVE & MOBILE LAYOUT
   ========================= */
@media (max-width: 992px) {
    .container { padding: 0 8px; }
    h1 { font-size: 1.65rem; }
    h2 { font-size: 1.22rem; }
    .card, .testimonial-card, .blog-post, .team-list > div, section ul li, section ol li {
        min-width: 130px;
        flex: 1 1 190px;
        font-size: 0.98rem;
    }
}
@media (max-width: 600px) {
    h1 { font-size: 1.25rem; }
    h2 { font-size: 1.04rem; }
    footer {
        font-size: 0.9rem;
    }
    form {
        padding: 20px 8px;
        font-size: 0.96rem;
    }
}

/* =========================
   CREATIVE/ARTISTIC ELEMENTS
   ========================= */
.section, .card, .testimonial-card, .team-list > div, .blog-post, section ul li, section ol li {
    position: relative;
    z-index: 1;
}
.section:before {
    content: '';
    display: block;
    position: absolute;
    left: -20px;
    top: 24px;
    width: 54px;
    height: 54px;
    background: #4AB98F33;
    border-radius: 50%;
    z-index: 0;
    filter: blur(2px);
    opacity: 0.35;
}
.section:nth-child(even):before {
    left: auto; right: -20px;
    background: #1B3A6922;
}
@media (max-width: 720px) {
    .section:before { display: none; }
}

.card:after,
.testimonial-card:after,
.team-list > div:after,
.blog-post:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 7px;
    right: 7px;
    width: 31px;
    height: 31px;
    background: #4AB98F2a;
    border-radius: 58% 42% 61% 39%/75% 32% 68% 25%;
    z-index: 0;
    filter: blur(1.6px);
    opacity: 0.50;
}

.card {
    border-left: 6px solid var(--primary);
}
.blog-post {
    border-left: 5px solid var(--secondary);
}
.team-list > div {
    border-bottom: 5px solid var(--secondary);
}

/* =========================
   TYPOGRAPHY HIERARCHY
   ========================= */
h1, h2, h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    letter-spacing: .01em;
    text-shadow: 0 3px 12px #4AB98F22;
}
h1 {
    color: var(--primary);
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--primary) 60%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 {
    color: var(--primary);
    margin-bottom: 12px;
}
h3 {
    color: var(--secondary);
    margin-bottom: 8px;
}

/* =========================
   BUTTONS & LINKS
   ========================= */
a, button {
    transition: all .17s cubic-bezier(.8,0,.3,1);
}
button, .cta-primary, .cta-secondary, form button {
    cursor: pointer;
    outline: none;
    border: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}
button:focus, .cta-primary:focus, .cta-secondary:focus, form button:focus {
    outline: 2px solid var(--secondary);
}

@media (min-width: 1200px) {
    h1 { font-size: 2.9rem; }
    h2 { font-size: 2.1rem; }
}

/* =========================
   ANIMATIONS & MICROINTERACTIONS
   ========================= */
.card:hover, .testimonial-card:hover, .blog-post:hover, .team-list > div:hover, section ul li:hover {
    box-shadow: 0 14px 38px -11px var(--secondary), 0 8px 36px #1B3A6920;
    transform: translateY(-5px) scale(1.02) rotate(-1.7deg);
    z-index: 2;
}
.cta-primary, .cta-secondary, .blog-post a, .mobile-menu-toggle, .mobile-menu-close, form button[type="submit"] {
    transition: background 0.19s, color 0.15s, box-shadow 0.17s, transform 0.16s;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #19202A;
    color: #fff;
    font-size: 1rem;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 -5px 40px #00000030;
    z-index: 2001;
    animation: cookieBannerSlideIn .66s cubic-bezier(.81,0,.24,1);
}
.cookie-banner.hide { display: none; }
.cookie-banner .cookie-text {
    max-width: 760px;
    text-align: center;
    margin-bottom: 18px;
}
.cookie-banner .cookie-actions {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}
.cookie-banner button {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    padding: 9px 19px;
    margin: 0 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 0;
}
.cookie-banner .accept {
    background: var(--secondary);
    color: #fff;
}
.cookie-banner .accept:hover { background: var(--primary); color: #4AB98F; }
.cookie-banner .reject {
    background: #fff;
    color: var(--danger);
    border: 2px solid var(--danger);
}
.cookie-banner .reject:hover { background: #D7263D; color: #fff; }
.cookie-banner .settings {
    background: var(--accent);
    color: var(--primary);
    border: 1.5px solid var(--secondary);
}
.cookie-banner .settings:hover { background: var(--secondary); color: #fff; }
@media (max-width: 700px) {
    .cookie-banner .cookie-actions { flex-direction: column; gap: 11px; }
}
@keyframes cookieBannerSlideIn {
    from { transform: translateY(80px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Cookie Modal */
.cookie-modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(27,58,105,0.45);
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFade .23s;
}
@keyframes modalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.cookie-modal {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 54px #1B3A6940;
    padding: 36px 28px;
    max-width: 450px;
    width: 93vw;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    animation: modalPop .41s cubic-bezier(.6,-0.35,.1,1.7);
}
@keyframes modalPop {
    from { transform: scale(0.82) translateY(35px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-title {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.38rem;
    margin-bottom: 0;
}
.cookie-modal .cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1.2px solid #e3e6ee;
    padding: 8px 0 5px 0;
}
.cookie-modal .cookie-category:last-child {
    border-bottom: none;
}
.cookie-modal .cat-title {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1rem;
}
.cookie-modal .toggle {
    appearance: none;
    width: 38px;
    height: 22px;
    border-radius: 13px;
    background: #edf0fd;
    position: relative;
    outline: none;
    border: 1.3px solid #ddd;
    cursor: pointer;
    transition: background 0.18s;
}
.cookie-modal .toggle:checked {
    background: var(--secondary);
}
.cookie-modal .toggle:before {
    content: '';
    position: absolute;
    left: 2px;
    top: 2.5px;
    width: 18px;
    height: 17px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 6px #1B3A6921;
    transition: left .16s;
}
.cookie-modal .toggle:checked:before {
    left: 18px;
}
.cookie-modal .cookie-actions {
    gap: 15px;
}
.cookie-modal .cookie-close {
    position: absolute;
    right: 14px;
    top: 13px;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.35rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.15s;
    padding: 2px 9px;
}
.cookie-modal .cookie-close:hover { background: #f2f2fd; }
@media (max-width: 600px) {
    .cookie-modal {
        padding: 21px 8px;
        font-size: 0.93rem;
    }
    .cookie-modal .modal-title { font-size: 1.12rem; }
}

/* =========================
   MISC: Newsletter, Alerts, etc
   ========================= */
form#newsletter, .newsletter-form {
    margin: 18px 0;
    background: #f7f6fd;
    border-radius: var(--radius-md);
    box-shadow: 0 1px 6px #1B3A6912;
    padding: 32px 18px;
}

.alert-success {
    background: var(--success);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--radius-md);
}
.alert-danger {
    background: var(--danger);
    color: #fff;
    padding: 11px 20px;
    border-radius: var(--radius-md);
}

/* =========================
   COLORFUL SCROLLBAR
   ========================= */
::-webkit-scrollbar {
    width: 11px;
    background: #eaf1fa;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(125deg, var(--primary) 35%, var(--secondary) 100%);
    border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* =========================
   ARTISTIC HIGHLIGHTS & DETAILS
   ========================= */
.section h2:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 48px;
    height: 8px;
    background: #4AB98Faa;
    border-radius: 6px;
    margin-left: 13px;
    margin-bottom: 4px;
}
@media (max-width: 600px) {
.section h2:after { width: 27px; height: 6px; margin-left: 6px; }
}

/* =========================
   PRINT STYLES (SIMPLE)
   ========================= */
@media print {
    body { color: #101; background: #fff; }
    header, footer, .mobile-menu, .cookie-banner, .cookie-modal-bg { display: none !important; }
    .container, main, section, .content-wrapper { all: unset; }
    main { margin: 0; }
}

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