/* === CSS RESET & BASELINE === */
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,
u,
i,
center,
dl,
dt,
dd,
menu,
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;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,main,menu,nav,section {
    display: block;
}
html { scroll-behavior: smooth; }
body {
    line-height: 1.5;
    background: #F7F8F9;
    color: #232A37;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
}
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; padding-left: 0; }
a {
    color: #60A5FA;
    text-decoration: none;
    transition: color .18s;
}
a:hover, a:focus {
    color: #232A37;
    text-decoration: underline;
}

/* === BRAND TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #232A37;
    margin-bottom: 16px;
}
h1 {
    font-size: 2.75rem;
    margin-bottom: 18px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.section h2 { margin-top: 0; }
p, ul, ol, blockquote {
    color: #232A37;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}
.tagline {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1.3rem;
    color: #60A5FA;
    margin-bottom: 28px;
    font-weight: 500;
}
strong, b { font-weight: 700; }

/* === LAYOUT / CONTAINER === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px 0 rgba(96,165,250,0.05), 0 1.5px 4px rgba(35,42,55,.04);
}
/* Each direct child section has spacing */
main > section:not(:last-child) {
    margin-bottom: 40px;
}

/* === MAIN NAVIGATION === */
header {
    background: #232A37;
    color: #fff;
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px 0 rgba(35,42,55,0.07);
    padding: 0 0;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 20px;
    justify-content: flex-start;
    background: none;
}
.main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #fff;
    font-size: 1.04rem;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color .2s;
}
.main-nav a:not(:first-child):after {
    content: '';
    display: block;
    width: 0%;
    height: 3px;
    background: #60A5FA;
    transition: width .24s cubic-bezier(.77,.02,.79,.66);
    border-radius: 2px;
    margin: 0 auto;
}
.main-nav a:hover,
.main-nav a:focus {
    color: #60A5FA;
}
.main-nav a:hover:after {
    width: 60%;
}
.main-nav img {
    height: 40px;
    width: auto;
    margin-right: 18px;
    display: inline-block;
    vertical-align: middle;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
    display: none;
    background: #60A5FA;
    color: #fff;
    font-size: 2.1rem;
    border: none;
    padding: 6px 13px 5px 13px;
    border-radius: 14px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 17px;
    z-index: 1501;
    box-shadow: 0 2px 10px rgba(35,42,55,0.05);
    transition: background .2s, transform .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
    background: #232A37;
    color: #ffdf00;
    outline: 2px solid #60A5FA;
    transform: scale(1.07);
}
.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(35,42,55,0.96);
    z-index: 1500;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.74,0,.19,1);
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: #fff;
    color: #232A37;
    font-size: 2rem;
    border: none;
    align-self: flex-end;
    margin: 16px 24px 0 0;
    border-radius: 10px;
    padding: 4px 12px;
    cursor: pointer;
    box-shadow: 0 1.5px 10px rgba(35,42,55,0.07);
    transition: background .2s, color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
    background: #60A5FA;
    color: #fff;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin: 40px 0 0 36px;
}
.mobile-nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 4px;
    border-radius: 7px;
    transition: background .19s, color .19s;
    width: 90vw;
    max-width: 300px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #60A5FA;
    color: #ffe453;
}

/* Hide nav on small screens, show burger */
@media (max-width: 950px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

@media (min-width: 951px) {
    .mobile-menu {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

/* === SECTION & LAYOUT PATTERNS === */
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    flex: 1 1 320px;
    min-width: 260px;
    background: #FFFBEC;
    border-radius: 20px;
    box-shadow: 0 6px 32px 0 rgba(243, 191, 50,0.08), 0 1.5px 4px rgba(35,42,55,.05);
    overflow: hidden;
    transition: box-shadow .23s, transform .13s;
}
.card:hover,
.card:focus-within {
    box-shadow: 0 12px 47px 0 rgba(243,191,50,0.16), 0 5px 18px rgba(96,165,250,0.07);
    transform: translateY(-6px) scale(1.012);
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 28px 24px;
}
.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: center;
    gap: 20px;
    background: #F7F8F9;
    border: 2.2px solid #60A5FA;
    padding: 28px 28px 22px 28px;
    border-radius: 20px;
    box-shadow: 0 7px 18px rgba(96,165,250,0.06);
    margin-top: 18px;
    margin-bottom: 20px;
    min-width: 260px;
    max-width: 650px;
    width: 100%;
}
.testimonial-card blockquote {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.12rem;
    font-style: italic;
    color: #232A37;
    background: none;
    border-left: 4px solid #FFD836;
    padding-left: 16px;
    margin-bottom: 10px;
}
.testimonial-card footer {
    font-size: 0.98rem;
    font-family: 'Roboto', Arial, sans-serif;
    align-self: flex-end;
    font-style: normal;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    min-width: 200px;
    background: #e8f1fc;
    border-radius: 13px;
    box-shadow: 0 2px 13px rgba(96,165,250,0.07);
    padding: 20px 20px 18px 20px;
    transition: box-shadow .2s, transform .13s;
}
.feature-item:hover,
.feature-item:focus-within {
    box-shadow: 0 7px 27px rgba(35,42,55,0.15);
    transform: scale(1.038);
}
.feature-item img {
    height: 40px;
    width: 40px;
}

/* === BUTTONS & CTAs === */
.cta-primary {
    display: inline-block;
    background: #60A5FA;
    color: #fff;
    border-radius: 13px;
    font-family: 'Montserrat', Arial, sans-serif;
    padding: 15px 44px;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: 0 5px 24px 0 rgba(96,165,250,0.14);
    border: none;
    cursor: pointer;
    transition: background .21s, transform .14s, box-shadow .22s;
    margin-top: 18px;
    outline: none;
}
.cta-primary:hover, .cta-primary:focus {
    background: #232A37;
    color: #FFD836;
    box-shadow: 0 7px 28px 0 rgba(96,165,250,0.19);
    transform: scale(1.04);
    text-decoration: none;
}
button {
    font-family: 'Montserrat', Arial, sans-serif;
}

/* === TABLES === */
table {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 1.5px 7px rgba(35,42,55,.04);
    overflow: hidden;
    margin: 16px 0 24px 0;
}
th, td {
    padding: 13px 11px;
    text-align: left;
    border-bottom: 1.5px solid #E0EAF4;
    font-size: 1rem;
}
th {
    background: #F7F8F9;
    color: #232A37;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
}
tr:last-child td {
    border-bottom: none;
}

/* === FOOTER === */
footer {
    background: #232A37;
    color: #fff;
    padding: 36px 0 30px 0;
    margin-top: 60px;
    border-radius: 32px 32px 0 0;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 16px;
}
.footer-links a {
    color: #60A5FA;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    transition: color .15s;
}
.footer-links a:hover, .footer-links a:focus {
    color: #fff84f;
}
footer address {
    color: #f2f2f2;
    font-style: normal;
    font-size: 1rem;
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.7;
    text-align: center;
}
footer img {
    height: 18px; width: 18px; vertical-align: text-bottom; margin: 0 7px 0 0;}

/* === MAP PLACEHOLDER STYLE === */
.map-placeholder {
    background: #E8F1FC;
    color: #232A37;
    border-radius: 18px;
    padding: 30px 26px;
    font-size: 1.1rem;
    margin-top: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(96,165,250,0.03);
}

/* === LISTS === */
ul, ol {
    margin-bottom: 16px;
    margin-top: 0px;
    list-style: none;
}
ul li:before, ol li:before {
    content: '\2022';
    color: #FFD836;
    font-size: 1.12em;
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
    vertical-align: middle;
}
ul li, ol li {
    margin-bottom: 10px;
    font-size: 1rem;
}
ul img, ol img {
    margin-right: 10px;
    vertical-align: middle;
}
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 2000;
    background: #232A37;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 22px 24px;
    box-shadow: 0 -2px 16px 0 rgba(96,165,250,0.11);
    border-radius: 18px 18px 0 0;
    flex-wrap: wrap;
    gap: 18px;
    animation: cookieBannerIn 0.8s cubic-bezier(.46,.03,.52,.96);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-message {
    flex: 1 1 220px;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
}
.cookie-consent-banner .cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cookie-consent-banner button {
    background: #fff;
    color: #232A37;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    padding: 10px 19px;
    cursor: pointer;
    margin: 0 2px;
    box-shadow: 0 3px 17px 0 rgba(96,165,250,0.12);
    transition: background .17s, color .13s, box-shadow .18s;
}
.cookie-consent-banner button.accept {
    background-color: #60A5FA;
    color: #fff;
}
.cookie-consent-banner button.accept:hover,
.cookie-consent-banner button.accept:focus {
    background: #FFD836;
    color: #232A37;
}
.cookie-consent-banner button.settings {
    background: #FFD836;
    color: #232A37;
}
.cookie-consent-banner button.settings:hover,
.cookie-consent-banner button.settings:focus {
    background: #232A37;
    color: #FFD836;
}
.cookie-consent-banner button.reject {
    background: #F7F8F9;
    color: #232A37;
}
.cookie-consent-banner button.reject:hover,
.cookie-consent-banner button.reject:focus {
    background: #232A37;
    color: #FFD836;
}

/* Cookie modal (hidden by default, class .open for show) */
.cookie-modal-overlay {
    position: fixed;
    top: 0; right: 0; left: 0; bottom: 0;
    z-index: 2100;
    background: rgba(35,42,55,.77);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    animation: fadeInModal .4s cubic-bezier(.45,.03,.52,.95);
}
.cookie-modal-overlay.open{
  opacity: 1;
  pointer-events: all;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 18px 86px 0 rgba(96,165,250,0.19);
    padding: 44px 40px 35px 40px;
    max-width: 420px;
    width: 90vw;
    color: #232A37;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}
.cookie-modal h2 {
    font-size: 1.25rem;
    color: #60A5FA;
}
.cookie-modal .cookie-category {
    margin-bottom: 18px;
    font-size: 1.06rem;
    font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal label.switch {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
    margin-bottom: 8px;
}
.cookie-modal input[type=checkbox] {
    accent-color: #60A5FA;
    width: 18px; height: 18px;
}
.cookie-modal .close-cookie-modal {
    position: absolute;
    top: 16px;
    right: 17px;
    background: none;
    border: none;
    color: #60A5FA;
    font-size: 2rem;
    cursor: pointer;
    transition: color .14s;
    z-index: 1;
}
.cookie-modal .close-cookie-modal:hover,
.cookie-modal .close-cookie-modal:focus {
    color: #FFD836;
}

/* === RESPONSIVE DESIGN / MOBILE FIRST === */
@media (max-width: 1120px) {
    .container {
        max-width: 97vw;
    }
}
@media (max-width: 900px) {
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.4rem; }
    .section {
        padding: 30px 8px;
        margin-bottom: 40px;
    }
    .feature-grid, .card-container {
        gap: 13px;
    }
    .card-content {
        padding: 16px 10px;
    }
    .testimonial-card, .feature-item {
        max-width: 98vw;
        padding-left: 7vw; padding-right: 7vw;
    }
}
@media (max-width: 768px) {
    .content-wrapper, .footer-links {
        gap: 13px;
    }
    .card-container, .feature-grid, .content-grid {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    .text-image-section {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .testimonial-card {
        padding: 16px 8vw 16px 8vw;
        border-radius: 13px;
        margin-left: 0;
        margin-right: 0;
    }
    .section {
        padding: 25px 4vw;
        margin-bottom: 25px;
    }
    main > section:not(:last-child) {
        margin-bottom: 18px;
    }
    .cta-primary {
        width: 98%;
        text-align: center;
        font-size: 1.04rem;
        padding: 11px 0;
    }
    footer {
        border-radius: 20px 20px 0 0;
        padding: 18px 0 15px 0;
    }
}
@media (max-width: 540px) {
    body {
        font-size: 15px;
    }
    h1 { font-size: 1.27rem;} 
    h2 { font-size: 1.02rem;} 
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    .testimonial-card, .feature-item {
        padding: 8vw 4vw;
        font-size: 0.98em;
    }
    .cookie-modal {
        padding: 20px 5vw 18px 5vw;
    }
    .cookie-consent-banner {
        padding: 15px 7px;
        border-radius: 9px 9px 0 0;
    }
}

/* === ARTISTIC CREATIVE DESIGN ACCENTS === */
.section {
    border-left: 11px solid #FFD836;
    position: relative;
    overflow: visible;
}
.section:before {
    content: '';
    display: block;
    position: absolute;
    top: -16px; left: -26px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #60A5FA;
    opacity: 0.14;
    z-index: 1;
}
.section:nth-child(2)::after {
    content: '';
    position: absolute;
    bottom: -21px; right: -18px;
    width: 55px; height: 25px;
    background: #FFD836;
    opacity: .23;
    border-radius: 60% 38% 51% 42%;
    z-index: 1;
}

.feature-item::after {
    content: '';
    display: block;
    position: absolute;
    top: 15px; left: 25px;
    width: 45px; height: 30px;
    background: #60A5FA;
    opacity: 0.09;
    border-radius: 70% 57% 52% 48%;
    z-index: 0;
}
.feature-item {
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 22px 0 rgba(96,165,250,0.10);
}

.cta-primary {
    box-shadow: 0 8px 36px 0 rgba(255,216,54,0.23), 0 3px 18px rgba(96,165,250,0.06);
    letter-spacing: 0.06em;
}
.cta-primary:active {
    box-shadow: 0 1.5px 6px rgba(96,165,250,0.12);
    transform: scale(0.97);
}

.card {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(103deg, #fff 60%, #FFFBEC 100%);
    border-left: 8px solid #60A5FA;
}

.testimonial-card {
    border-left: 8px solid #FFD836;
    position: relative;
    background: #FFFCEB;
    box-shadow: 0 8px 25px rgba(255,216,54,0.08);
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    left: 17px;
    top: 2px;
    font-size: 4.5rem;
    color: #FFD836;
    opacity: 0.25;
    font-family:'Montserrat',sans-serif;
}

/* === FORM ELEMENTS === */
input,textarea,select {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    border: 1.5px solid #60A5FA;
    border-radius: 7px;
    padding: 10px 12px;
    margin-bottom: 12px;
    width: 100%;
    background: #fff;
    color: #232A37;
    transition: border-color .16s;
    outline: none;
}
input:focus,textarea:focus,select:focus {
    border-color: #FFD836;
}

/* === MISC UTILS === */
.hide { display: none; }
.show { display: block; }
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px 1px 1px 1px); white-space: nowrap; }

/* === ANIMATIONS & MICROINTERACTIONS === */
.card, .testimonial-card, .feature-item, .cta-primary, .cookie-consent-banner, .cookie-modal {
    transition: box-shadow .22s cubic-bezier(.73,.13,.27,.77), transform .19s cubic-bezier(.69,.03,.38,1);
}

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

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