/* =======================================
   CSS RESET & NORMALIZE (MOBILE FIRST)
======================================= */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #f6f6f6;
  color: #193948;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
/* Set default font smoothing and rendering */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  background: none;
}

/* =======================================
   BRAND FONTS
======================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F6F6F6;
  color: #193948;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #15516B;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
p, li, blockquote, cite {
  font-size: 1.07rem;
  color: #20313a;
}
strong {
  font-weight: 700;
  color: #15516B;
}

/* Artistic font accent for display */
.hero h1, .cta h2, .cta h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -2px;
  color: #15516B;
  text-shadow: 0 3px 8px rgba(255, 184, 28, 0.10), 0 2px 4px rgba(21,81,107,0.06);
}

/* =======================================
   COLORS AND CUSTOM PROPERTIES
======================================= */
:root {
  --primary: #15516B;
  --secondary: #F6F6F6;
  --accent: #FFB81C;
  --neutral: #fff;
  --gray: #e5eaed;
  --danger: #ef3e36;
  --shad-md: 0 5px 18px rgba(21,81,107, 0.08);
  --shad-lg: 0 14px 48px rgba(21, 81, 107, 0.13);
}
/* Consistent clickable color for links */
a, .main-nav a, .footer-nav a {
  color: var(--primary);
  position: relative;
  transition: color 0.2s cubic-bezier(.4,.2,.6,1);
}
a:hover,
.main-nav a:hover,
.footer-nav a:hover {
  color: var(--accent);
  text-decoration: underline wavy var(--accent) 1.5px;
}

/* =======================================
   CONTAINER SPACING & GENERAL LAYOUT
======================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shad-md);
  position: relative;
}

main section:not(.cta):not(.hero):not(.testimonials) {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 18px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* =======================================
   HEADER & NAVIGATION
======================================= */
header {
  width: 100%;
  background: var(--neutral);
  box-shadow: 0 1px 12px rgba(21,81,107, 0.07);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px 32px;
}
.logo img {
  height: 48px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 4px 0;
  line-height: 1.2;
}
.cta-button {
  background: linear-gradient(95deg, var(--accent) 0%, #FFD700 80%);
  color: #154262;
  padding: 12px 28px;
  border-radius: 99px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.6px;
  box-shadow: var(--shad-md);
  position: relative;
  transition: background 0.25s cubic-bezier(.33,.64,.71,1), transform 0.15s;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-left: 8px;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(99deg, #FFD700 0%, var(--accent) 90%);
  color: #0B3145;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 36px -8px var(--accent), var(--shad-lg);
}
.mobile-menu-toggle {
  background: var(--primary);
  color: #fff;
  font-size: 2.1rem;
  padding: 6px 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: none;
  margin-left: 12px;
  z-index: 120;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(246,246,246,0.97);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.74,.13,.24,1);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 40px 32px;
  box-sizing: border-box;
  box-shadow: 0 8px 44px rgba(21,81,107, .21);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  font-size: 2.3rem;
  padding: 8px 20px 6px 20px;
  border-radius: 18px;
  border: none;
  margin-bottom: 16px;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 200;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  padding: 12px 0 10px 0;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1.5px dotted var(--gray);
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: none;
}

/* MAIN AND HERO SECTIONS */
.hero {
  background: #fffbe9;
  padding: 54px 0 48px 0;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 8px 54px -18px #FFB81C1d, var(--shad-md);
  margin-bottom: 44px;
  position: relative;
}
.hero .container {
  align-items: center;
  justify-content: center;
  display: flex;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 12px;
}
.hero .cta-button {
  margin-top: 18px;
}

@media (max-width: 768px) {
  .hero {
    padding: 28px 0 24px 0;
    border-radius: 0 0 28px 28px;
  }
}

/* =======================================
   FLEXBOX STRUCTURES AS REQUIRED
======================================= */
.feature-grid,
.card-container,.card-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature-grid {
  margin-top: 24px;
  margin-bottom: 16px;
  flex-direction: row;
}
.feature {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shad-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 32px 22px 26px 22px;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 360px;
  transition: box-shadow 0.2s, transform 0.18s;
  margin-bottom: 20px;
  position: relative;
  border: 2.5px solid #FFB81C18;
}
.feature:hover {
  box-shadow:0 16px 46px -10px var(--accent), 0 3px 10px rgba(21,81,107,.06);
  transform: translateY(-6px) scale(1.015);
  border-color: var(--accent);
}
.feature img {
  height: 52px;
  width: 52px;
  filter: drop-shadow(0 2px 9px #FFB81C33);
  margin-bottom: 8px;
}
.feature h3 {
  margin-bottom: 4px;
  color: #15516B;
  font-size: 1.23rem;
}

.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shad-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 22px 18px 22px;
  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;
}

@media (max-width: 900px) {
  .feature-grid, .card-container,.card-grid, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: #f9f3e7;
  border-radius: 36px;
  margin-bottom: 44px;
  padding: 48px 0;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 16px 28px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: var(--shad-md);
  border-left: 7px solid var(--accent);
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  max-width: 540px;
  font-size: 1.13rem;
  color: #17425c;
}
.testimonial-card strong {
  color: #0D3252;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.testimonial-card p {
  color: #0d3252;
  margin-bottom: 6px;
}
.testimonial-card div:last-child {
  color: #FFB81C;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 26px 0;
    border-radius: 18px;
  }
  .testimonial-card {
    padding: 15px 13px 11px 13px;
    border-radius: 16px;
  }
}

/* CTA SECTION */
.cta {
  background: linear-gradient(98deg, #FFD700 0%, #FFB81C 100%);
  color: #173446;
  padding: 64px 0 48px 0;
  border-radius: 36px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 7px 32px -16px #FFB81C33, var(--shad-md);
}
.cta h2, .cta h1 {
  color: #15516B;
}
.cta p {
  color: #1c3042;
}
.cta .cta-button {
  margin-top: 18px;
  background: #15516B;
  color: #fff;
  box-shadow:0 6px 32px -6px #15516B50, 0 2px 4px #FFB81C22;
  transition: background 0.22s, color 0.18s, transform 0.18s;
}
.cta .cta-button:hover {
  background: #FFB81C;
  color: #15516B;
  transform: scale(1.03) translateY(-3px);
}
@media (max-width: 768px) {
  .cta {
    padding: 32px 0 20px 0;
    border-radius: 18px;
  }
}

/* LISTS AND TEXT SECTION */
ul, ol {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 10px;
  list-style: none;
}
ul li::before {
  content: '⦿';
  color: var(--accent);
  font-size: 1.17rem;
  margin-right: 15px;
  vertical-align: middle;
  display: inline-block;
}
.text-section ul li::before {
  content: '∴';
  color: #15516B;
  font-size: 1.05rem;
  margin-right: 12px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #15516B;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 12px;
}
cite {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #0d3252;
  font-size: .97rem;
}

/* CONTACT & MAP-PLACEHOLDER */
.contact-details,
.map-placeholder {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shad-md);
  padding: 22px 22px 15px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-details p, .map-placeholder p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #20313a;
}

/* FOOTER */
footer {
  background: #22333b;
  color: #E5EAED;
  padding: 40px 0 22px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.footer-nav a {
  color: #fff;
  font-size: .97rem;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.18s;
  opacity: .95;
  border-bottom: 1.5px dashed #FFB81C44;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #FFB81C;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: .97rem;
  align-items: flex-start;
  margin-top: 8px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .97;
  min-width: 180px;
  color: #E5EAED;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 3px #15516B55);
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .footer-nav,
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  footer {
    padding: 24px 0 16px 0;
  }
}

/* FEATURES FLEX ITEM */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* CARD FLEX PATTERNS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* GENERAL BUTTON STYLES */
button, .cta-button, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
  outline: none;
}

/* =======================================
   COOKIE BANNER & MODAL
======================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe9;
  border-top: 4px solid var(--accent);
  box-shadow: 0 -3px 14px rgba(21,81,107, 0.10);
  z-index: 300;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s cubic-bezier(.44,.44,.66,1);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #154262;
  font-size: 1.07rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  margin-right: 4px;
  margin-bottom: 4px;
}
.cookie-btn.accept {
  background: var(--accent);
  color: #0e3650;
  box-shadow: 0 3px 16px -6px var(--accent), 0 2px 4px #e0be0521;
}
.cookie-btn.accept:focus, .cookie-btn.accept:hover {
  background: #ffd600;
  color: #15516B;
}
.cookie-btn.reject {
  background: #e5eaed;
  color: #193948;
  border: 1.5px solid #19394822;
}
.cookie-btn.reject:focus, .cookie-btn.reject:hover {
  background: #fff;
  color: #e84a43;
  border-color: #e84a43;
}
.cookie-btn.settings {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #FFB81C;
  color: #15516B;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 310;
  background: rgba(21,81,107, 0.15);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 400;
  transform: translate(-50%, 200%) scale(0.94);
  min-width: 300px;
  max-width: 96vw;
  width: 400px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 14px 56px 0 #0e365050, var(--shad-lg);
  padding: 26px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.44,.19,.32,1), opacity 0.23s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  color: #15516B;
  font-size: 1.22rem;
  margin-bottom: 7px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal-category label {
  font-size: 1.02rem;
  color: #17425c;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 22px;
  height: 22px;
  border-radius: 6px;
  margin: 0 7px 0 0;
  vertical-align: middle;
}
.cookie-modal-category input[disabled] {
  filter: grayscale(1) brightness(1.13);
  opacity: .88;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

/* =======================================
   ANIMATIONS & MICRO-INTERACTIONS
======================================= */
.cta-button, .cookie-btn, .main-nav a, .feature, .mobile-menu-toggle, .mobile-menu-close, .footer-nav a {
  transition: background 0.22s, color 0.20s, box-shadow 0.20s, transform 0.13s;
}
.feature:hover, .card:hover {
  transform: translateY(-4px) scale(1.01);
}
.footer-contact img {
  transition: filter 0.22s;
}
.footer-contact img:hover {
  filter: brightness(2) drop-shadow(0 2px 10px #FFB81C);
}
@media (hover: hover) {
  .feature:hover {
    filter: brightness(1.03);
  }
}

/* SCROLLBAR ARTISTIC – not essential, but stylish */
body {
  scrollbar-width: thin;
  scrollbar-color: #FFB81C #e5eaed;
}
body::-webkit-scrollbar {
  width: 7px;
  background: #e5eaed;
}
body::-webkit-scrollbar-thumb {
  background: #FFB81C;
  border-radius: 12px;
}

/* =======================================
   RESPONSIVE TYPOGRAPHY & LAYOUT
======================================= */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.48rem;
  }
  .feature {
    padding: 22px 12px 19px 12px;
    min-width: 200px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .hero, .cta {
    padding: 14px 0 14px 0;
    border-radius: 8px;
  }
  .feature {
    padding: 12px 5px;
    border-radius: 12px;
    min-width: 120px;
    font-size: 0.92rem;
  }
  .testimonials {
    padding: 12px 0;
    border-radius: 8px;
  }
  .section {
    padding: 13px 4px;
    border-radius: 10px;
    margin-bottom: 18px;
  }
  .footer-contact {
    gap: 7px;
  }
  .card, .testimonial-card {
    padding: 8px 6px 5px 6px;
    border-radius: 8px;
  }
}

/* =======================================
   CREATIVE ARTISTIC EFFECTS & DETAILS
======================================= */
.feature {
  /* Artistic effect: playful shadow highlight */
  box-shadow: 0 7px 40px -12px #FFD70044, 0 3px 10px rgba(21,81,107,.05), 0 1px 0 #FFB81C18 inset;
  /* Artistic border dash on top */
  border-top: 4px dashed var(--accent);
}
.section, .card, .testimonial-card {
  box-shadow: var(--shad-md), 0 2px 14px -7px #15516B11;
}

/* Artistic hover line under main nav links */
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2.5px;
  background: var(--accent);
  border-radius: 4px;
  transition: width 0.22s;
  margin: 2px 0 0 0;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

/* Artistic dots & wavy underlines for lists */
ul li {
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}


/* =============================== */
/*  Utility Classes (Spacing + Text) */
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.bold { font-weight: 700; }

/* NO GRID PROPERTIES USED! Only display: flex for layouts! */
