/* ===== 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #253547;
    background: #F6F7FB;
    line-height: 1.6;
    min-height: 100vh;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: #5DB192;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}
a:hover,
a:focus {
    color: #243C5A;
    text-decoration: underline;
}
ul, ol {
    margin-left: 20px;
    margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong {
    font-weight: 700;
}
/* ===== BRAND FONTS ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #243C5A;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}
h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}
h4, h5, h6 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

/* ===== SHARED LAYOUT & CONTAINERS ===== */
.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-wrapper {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 0 0;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 16px rgba(36,60,90,0.10), 0 1.5px 4px rgba(36, 60, 90, 0.12);
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    min-width: 300px;
    transition: box-shadow 0.2s;
}
.card:hover {
    box-shadow: 0 6px 28px rgba(36,60,90,0.15), 0 3px 8px rgba(36, 60, 90, 0.16);
    transform: translateY(-4px);
    z-index: 1;
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
.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;
}
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(36,60,90,0.08);
    padding: 28px 22px;
    margin-bottom: 20px;
    min-width: 260px;
    max-width: 100%;
}

.article-card {
    background: #fff;
    box-shadow: 0 4px 18px rgba(36, 60, 90, 0.06);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 18px;
    margin-bottom: 20px;
    transition: box-shadow .2s, transform .2s;
}
.article-card:hover {
    box-shadow: 0 7px 28px rgba(93,177,146,0.16);
    transform: translateY(-2px) scale(1.03);
}

.text-section {
    font-size: 1.13rem;
    color: #243C5A;
}

/* ===== HERO SECTION ===== */
.hero {
    background: #243C5A;
    color: #fff;
    padding: 64px 0 52px 0;
    border-radius: 0 0 60px 60px;
    margin-bottom: 60px;
}
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero .content-wrapper {
    gap: 24px;
}
.hero h1 {
    color: #fff;
    text-shadow: 0 2px 32px rgba(36, 60, 90, 0.30);
}
.hero p {
    color: #F6F7FB;
    font-size: 1.20rem;
    font-weight: 500;
}
.hero .cta {
    padding: 16px 38px;
    font-size: 1.08rem;
    border-radius: 26px;
    background: #5DB192;
    color: #fff;
    box-shadow: 0 2px 8px rgba(93,177,146,0.26);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.hero .cta:hover,
.hero .cta:focus {
    background: #47a08c;
    color: #fff;
    box-shadow: 0 4px 18px rgba(93,177,146,0.24);
    transform: translateY(-1px) scale(1.03);
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    background: #5DB192;
    color: #fff;
    border-radius: 44px;
    margin: 40px 0 0 0;
    padding: 56px 0 48px 0;
    box-shadow: 0 1.5px 8px rgba(93,177,146,0.09);
    text-align: center;
}
.cta-section h2 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 2.05rem;
}
.cta-section p {
    font-size: 1.16rem;
    margin-bottom: 28px;
}
.cta-section .cta {
    background: #243C5A;
    color: #fff;
    border-radius: 26px;
    padding: 16px 36px;
    box-shadow: 0 2px 8px rgba(36,60,90,0.15);
    font-weight: 700;
    font-size: 1.12rem;
    transition: background 0.2s, transform 0.14s;
}
.cta-section .cta:hover,
.cta-section .cta:focus {
    background: #1d2f45;
    color: #fff;
    transform: scale(1.045);
}

/* ===== BUTTONS ===== */
.cta {
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    background: #5DB192;
    color: #fff;
    padding: 12px 30px;
    border-radius: 24px;
    font-size: 1.09rem;
    letter-spacing: .03em;
    box-shadow: 0 2px 8px rgba(93,177,146,0.17);
    transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
}
.cta:hover, .cta:focus {
    background: #243C5A;
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(36,60,90,0.12);
}
button, .button {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    background: #5DB192;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 28px;
    font-size: 1.04rem;
    cursor: pointer;
    transition: background 0.18s, transform 0.13s, box-shadow 0.14s;
}
button:hover, .button:hover, button:focus, .button:focus {
    background: #243C5A;
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 2.2px 10px rgba(36,60,90,0.13);
}

/* ===== NAVIGATION & HEADER ===== */
header {
    position: relative;
    background: #fff;
    box-shadow: 0 2px 18px rgba(36,60,90,0.06);
    z-index: 21;
}
header nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    padding: 14px 0;
}
header nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #243C5A;
    border-radius: 10px;
    padding: 8px 16px;
    transition: background 0.18s, color 0.13s;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}
header nav a:hover, header nav a:focus {
    background: #5DB192;
    color: #fff;
}
header nav .cta {
    background: #5DB192;
    color: #fff;
    margin-left: 12px;
    padding: 11px 22px;
}
header nav .cta:hover, header nav .cta:focus  {
    background: #243C5A;
    color: #fff;
}
header nav img {
    height: 37px;
    margin-right: 8px;
    vertical-align: middle;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
    display: none;
    background: #243C5A;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 2.4rem;
    padding: 5px 13px;
    cursor: pointer;
    z-index: 1005;
    position: absolute;
    right: 20px;
    top: 12px;
    transition: background 0.18s, color 0.14s, transform 0.2s;
}
.mobile-menu-toggle:active { transform: scale(0.94); }

.mobile-menu {
    display: none;
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    background: #F6F7FB;
    z-index: 2000;
    padding: 0;
    transform: translateX(105%);
    transition: transform 0.34s cubic-bezier(.7,1,.32,1);
    height: 100vh;
    width: 100vw;
    box-shadow: 0 6px 32px rgba(36,60,90,0.19);
}
.mobile-menu.open {
    display: block;
    transform: translateX(0);
}
.mobile-menu-close {
    background: #243C5A;
    color: #fff;
    border: none;
    font-size: 2.3rem;
    padding: 6px 15px;
    border-radius: 8px;
    cursor: pointer;
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2003;
    transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #5DB192;
    color: #fff;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 90px 30px 28px 30px;
}
.mobile-nav a {
    font-size: 1.22rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #243C5A;
    padding: 13px 0;
    width: 100%;
    transition: background 0.17s, color 0.12s;
    border-radius: 10px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #5DB192;
    color: #fff;
}

@media (max-width: 1150px) {
    .container { max-width: 98vw; }
}
@media (max-width: 900px) {
    .feature-grid { gap: 24px; }
    .container { padding: 0 13px; }
}
@media (max-width: 850px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.45rem; }
    .hero .content-wrapper { gap: 16px; }
    .cta-section { border-radius: 20px; }
}
@media (max-width: 780px) {
    header nav { gap: 12px; flex-wrap: wrap; padding: 10px 0; }
}
@media (max-width: 768px) {
    header nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .content-wrapper, .feature-grid, .content-grid {
        flex-direction: column;
        gap: 18px 0;
    }
    .text-image-section {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .hero { padding: 48px 0 30px 0; border-radius: 0 0 30px 30px; }
    .cta-section { border-radius: 17px; padding: 34px 0 24px 0; }
    .article-card { padding: 16px 8px; }
}
@media (max-width: 530px) {
    .hero { padding: 32px 0 18px 0; }
    h1 { font-size: 1.2rem; }
    h2 { font-size: 1.08rem; }
    .container { padding: 0 6px; }
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(36, 60, 90, 0.09);
    margin-bottom: 20px;
    max-width: 560px;
    min-width: 220px;
    font-size: 1.09rem;
    font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card p {
    color: #243C5A;
    font-weight: 600;
    font-size: 1.09rem;
    margin-bottom: 4px;
}
.testimonial-card strong {
    color: #5DB192;
    font-weight: 700;
}

/* Ensure proper color contrast in testimonials & review sections */
.testimonial-card, .testimonial-card p, .testimonial-card strong {
    background: #fff;
    color: #243C5A;
}

/* ===== FOOTER ===== */
footer {
    background: #243C5A;
    color: #fff;
    padding: 46px 0 32px 0;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -2px 16px rgba(36,60,90,0.05);
}
footer nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
footer nav a {
    color: #fff;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.03rem;
    border-radius: 8px;
    padding: 6px 12px;
    background: none;
    transition: background 0.13s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
    background: #5DB192;
    color: #fff;
}
footer address {
    font-style: normal;
    color: #d7e3e6;
    text-align: center;
    font-size: .98rem;
    margin: 12px 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
footer address img {
    vertical-align: middle;
    margin-right: 5px;
    height: 19px;
    margin-bottom: -2px;
}
footer > div:last-child {
    text-align: center;
    color: #a7b7bb;
    font-size: .93rem;
    margin-top: 9px;
}

/* ===== CARDS & LISTS ==== */
ul, ol {
  margin-bottom: 20px;
}
.content-wrapper > ul, .content-wrapper > ol {
  font-size: 1.07rem;
  margin-bottom: 10px;
}

/* ===== CONTACT MAP (Fake) ===== */
.contact-map {
    background: #e8eef2;
    border-radius: 18px;
    padding: 34px 18px;
    font-size: 1.13rem;
    color: #243C5A;
    margin-bottom: 12px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 1px 9px rgba(36, 60, 90, 0.10);
}

/* ===== Cookie Consent Banner ===== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 3300;
    background: #243C5A;
    color: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    padding: 16px 36px 18px 36px;
    box-shadow: 0 -2px 16px rgba(36, 60, 90, 0.17);
    font-size: 1.03rem;
    animation: slideInUp .35s;   
}
@keyframes slideInUp {
  from { transform: translateY(80px); opacity: 0; } to { transform: none; opacity: 1; }
}
.cookie-consent-banner .cookie-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.cookie-consent-banner button {
    border: none;
    background: #5DB192;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 23px;
    padding: 9px 20px;
    font-size: .99rem;
    cursor: pointer;
    transition: background .16s, color .11s;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
    background: #1d2f45;
    color: #fff;
}
.cookie-consent-banner .cookie-settings-btn {
    background: #fff;
    color: #243C5A;
    border: 1.5px solid #5DB192;
}
.cookie-consent-banner .cookie-settings-btn:hover,
.cookie-consent-banner .cookie-settings-btn:focus {
    background: #5DB192;
    color: #fff;
}
@media (max-width: 600px) {
    .cookie-consent-banner { flex-direction: column; gap: 12px; padding: 12px 9px 20px 9px; font-size: .96rem; }
}

/* ===== Cookie Modal ===== */
.cookie-modal {
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    z-index: 4000;
    background: rgba(36, 60, 90, 0.46);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInModal .28s;
}
@keyframes fadeInModal {
    from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-dialog {
    background: #fff;
    color: #243C5A;
    padding: 32px 28px 22px 28px;
    border-radius: 22px;
    min-width: 320px;
    max-width: 440px;
    box-shadow: 0 4px 26px rgba(36,60,90,0.15);
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: popIn .29s;
}
@keyframes popIn {
    from { transform: scale(.92); opacity: 0.6; } to { transform: scale(1); opacity: 1; }
}
.cookie-modal-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.38rem;
    margin-bottom: 12px;
}
.cookie-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: #243C5A;
    color: #fff;
    border: none;
    font-size: 1.42rem;
    border-radius: 6px;
    padding: 3px 13px;
    cursor: pointer;
    z-index: 4020;
    transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    background: #5DB192;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0 3px 0;
}
.cookie-category input[type="checkbox"],
.cookie-category input[type="radio"] {
    accent-color: #5DB192;
    width: 18px;
    height: 18px;
}
.cookie-category label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
}

/* Modal actions */
.cookie-modal-actions {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    justify-content: flex-end;
}
.cookie-modal-actions button {
    border: none;
    background: #5DB192;
    color: #fff;
    border-radius: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 10px 24px;
    font-size: 1.01rem;
    cursor: pointer;
    transition: background .13s;
}
.cookie-modal-actions button:last-child {
    background: #fff;
    color: #243C5A;
    border: 1.7px solid #5DB192;
}
.cookie-modal-actions button:last-child:hover,
.cookie-modal-actions button:last-child:focus {
    background: #5DB192;
    color: #fff;
}

/* ===== MICRO-INTERACTIONS ===== */
.card, .feature-item, .article-card {
    transition: box-shadow 0.2s, transform 0.16s;
}
.card:active, .feature-item:active, .article-card:active {
    transform: scale(0.98);
}
.cta:active, .button:active {
    transform: scale(0.97);
}

/* ===== FOCUS OUTLINES FOR ACCESSIBILITY ===== */
a:focus, button:focus, .cta:focus, input:focus, .cookie-modal-close:focus {
    outline: 2px solid #5DB192;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #F6F7FB;
}

/* ===== VISUAL (GEOMETRIC) ELEMENTS ===== */
h1, h2, h3 {
    border-left: 12px solid #5DB192;
    padding-left: 19px;
}
@media (max-width: 850px) {
    h1, h2, h3 { border-left-width: 6px; padding-left: 8px; }
}

/* ===== SPACING AND FLEX GAPS ===== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ===== MISC UI/UX ===== */
::-webkit-scrollbar {
    width: 12px;
    background: #ececec;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    background: #5DB192;
    border-radius: 8px;
}

::selection {
    background: #5DB192;
    color: #fff;
}
