/* 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,
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,
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;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #E9ECEF;
  color: #264653;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol, dl {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.22s;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  outline: none;
  border: none;
  color: inherit;
}
:focus {
  outline: 2px solid #F7C873;
  outline-offset: 3px;
}

/* ========== BRAND TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #264653;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.19;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

p, li, dd {
  font-size: 1rem;
  color: #264653;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}

/* ========== LAYOUT CONTAINERS & SECTIONS ========== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 18px;
}

/* ========== MAIN NAV & HEADER ========== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(38,70,83,0.06);
  position: relative;
  z-index: 100;
  padding-bottom: 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 24px 0 8px 0;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  color: #264653;
  position: relative;
}
.main-nav a:hover:not(.btn-primary),
.main-nav a:focus:not(.btn-primary) {
  background: #F7C873;
  color: #264653;
}

.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 16px;
  vertical-align: middle;
}

.btn-primary {
  background: #F7C873;
  color: #264653 !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  padding: 10px 32px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  box-shadow: 0 2px 11px 0 rgba(38, 70, 83, 0.12);
  border: none;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #264653;
  color: #fff !important;
  box-shadow: 0 4px 18px 0 rgba(38, 70, 83, 0.15);
}

/* ========== HAMBURGER MENU & MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  display: none;
  background: #F7C873;
  color: #264653;
  font-size: 2.2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  padding: 3px 18px 6px 18px;
  margin-right: 8px;
  margin-left: auto;
  transition: background 0.18s, color 0.18s;
  z-index: 102;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #264653;
  color: #F7C873;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 32px rgba(38,70,83,0.12);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  transition: transform 0.38s cubic-bezier(.74,0,.33,1);
  transform: translateX(-100vw);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: 26px;
  margin-bottom: 18px;
  background: #F7C873;
  color: #264653;
  border-radius: 12px;
  font-size: 2rem;
  padding: 5px 20px 7px 20px;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.18s;
  z-index: 1200;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #264653;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  padding: 14px 20px 14px 0;
  border-radius: 16px;
  color: #264653;
  min-width: 220px;
  transition: background 0.2s, color 0.2s;
  display: block;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #F7C873;
  color: #264653;
}

/* ========== HERO & CTA SECTIONS ========== */
.hero-section {
  background: #264653;
  color: #fff;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 6px 64px rgba(38,70,83,0.18);
  margin-bottom: 60px;
  padding: 64px 0 64px 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-section .content-wrapper {
  gap: 24px;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.14;
}
.hero-section p {
  color: #F7C873;
  font-weight: 500;
  font-size: 1.22rem;
}
.hero-section .btn-primary {
  margin-top: 18px;
}
.cta-section {
  background: #F7C873;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(38,70,83,0.08);
  color: #264653;
  margin-bottom: 60px;
  text-align: center;
}
.cta-section h2 {
  color: #264653;
}
.cta-section p {
  color: #264653;
  font-size: 1.1rem;
}
.cta-section .btn-primary {
  margin-top: 18px;
}

/* ========== FEATURES & SERVICE LIST ========== */
.features-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(38,70,83,0.07);
}
.feature-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 0;
}
.feature-list li,
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #E9ECEF;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(38,70,83,0.05);
  padding: 18px 22px;
  min-width: 220px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #264653;
  flex: 1 0 240px;
  margin-bottom: 0;
  transition: box-shadow 0.15s, background 0.15s;
}
.feature-list li:hover,
.service-list li:hover {
  box-shadow: 0 4px 20px rgba(38,70,83,0.12);
  background: #F7C87344;
}
.feature-list img,
.service-list img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.service-list strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #264653;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(38,70,83,0.07);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  margin-bottom: 20px;
  background: #E9ECEF;
  border-radius: 18px;
  box-shadow: 0 2px 11px rgba(38,70,83,0.09);
  color: #264653;
  min-width: 260px;
  max-width: 670px;
  position: relative;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  transition: box-shadow 0.15s, background 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(38,70,83,0.17);
  background: #F7C87355;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.06rem;
  color: #264653;
}
.testimonial-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}

/* ========== TABLES (PRICING) ========== */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(38,70,83,0.05);
}
thead {
  background: #264653;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}
th, td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid #E9ECEF;
}
th {
  font-size: 1.07rem;
}
tbody tr:last-child td {
  border-bottom: none;
}
tr:nth-child(even) td {
  background: #E9ECEF;
}

/* ========== TEXT BLOCKS ========== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.text-section ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.text-section li {
  list-style: disc;
}

/* ========== MAP PLACEHOLDER ========== */
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  background: #E9ECEF;
  border-radius: 18px;
  padding: 26px 16px;
  box-shadow: 0 2px 12px rgba(38,70,83,0.08);
  text-align: center;
}
.map-placeholder img {
  width: 82px;
  height: auto;
  margin-bottom: 6px;
}

/* ========== FOOTER ========== */
footer {
  width: 100%;
  background: #264653;
  color: #fff;
  padding: 48px 0 24px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 24px rgba(38,70,83,0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 8px;
}
.footer-nav a {
  font-size: 1rem;
  color: #F7C873;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.18s, text-decoration 0.18s;
  border-radius: 10px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  font-size: 1rem;
  color: #fff;
  align-items: center;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .98rem;
}
.footer-contact img {
  width: 22px;
  height: 22px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 8px 0 8px 0;
  align-items: center;
}
.footer-social a {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: background 0.18s;
}
.footer-social a:hover,
.footer-social a:focus {
  background: #F7C873;
}
.footer-social img {
  width: 24px;
  height: auto;
}
footer p {
  font-size: .89rem;
  color: #F7C873;
  margin-top: 10px;
  text-align: left;
  letter-spacing: .4px;
}

/* ========== COOKIE BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #264653;
  color: #fff;
  padding: 28px 22px 22px 22px;
  box-shadow: 0 -2px 28px rgba(38,70,83,0.13);
  display: flex;
  flex-direction: row;
  gap: 34px;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  width: 100vw;
  min-height: 76px;
  border-radius: 18px 18px 0 0;
  animation: cookie-banner-fadein 0.7s cubic-bezier(.74,0,.33,1);
}
@keyframes cookie-banner-fadein {
  0% {transform: translateY(100%);opacity:0}
  100% {transform: translateY(0);opacity:1}
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  max-width: 670px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  border-radius: 14px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #264653;
  background: #F7C873;
  padding: 10px 22px;
  font-size: .97rem;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  outline: none;
  margin: 0;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #264653;
  color: #fff;
  outline: 2px solid #F7C873;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #264653;
  border: 1.5px solid #F7C873;
}
.cookie-banner .cookie-settings:focus,
.cookie-banner .cookie-settings:hover {
  background: #F7C873;
  color: #264653;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 2050;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,70,83,0.26);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #264653;
  border-radius: 22px;
  box-shadow: 0 8px 64px rgba(38,70,83,0.23);
  padding: 38px 28px 28px 28px;
  max-width: 420px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: cookie-modal-in 0.68s cubic-bezier(.74,0,.33,1);
  position: relative;
}
@keyframes cookie-modal-in {
  0% {opacity:0;transform: translateY(64px) scale(.92)}
  100% {opacity:1;transform: translateY(0) scale(1)}
}
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #E9ECEF;
  border-radius: 14px;
  padding: 14px 14px;
  margin-bottom: 0;
  font-size: .99rem;
}
.cookie-category label {
  flex: 1 1 auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
}
.cookie-category input[type="checkbox"] {
  width: 21px; height: 21px;
  accent-color: #F7C873;
}
.cookie-category .always-on {
  font-weight: bold;
  color: #264653;
  margin-left: 8px;
  font-size: .93rem;
  background: #F7C873;
  border-radius: 10px;
  padding: 3px 11px;
  display: inline-block;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #264653;
  background: #F7C873;
  padding: 9px 22px;
  font-size: .97rem;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal button:focus,
.cookie-modal button:hover {
  background: #264653;
  color: #fff;
}

/* ========== RESPONSIVE & FLEXBOX LAYOUTS ========== */
.card-container, .service-list, .feature-list, .footer-contact, .footer-nav, .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(38,70,83,0.07);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== GEOMETRIC STRUCTURED EFFECTS ========== */
section, .card, .testimonial-card, .footer-nav a, .btn-primary, .feature-list li, .service-list li, .cookie-banner, .cookie-modal {
  border-top-left-radius: 18px 32px;
  border-bottom-right-radius: 18px 32px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: none;
  /* Use a geometric-structured look for headings */
  letter-spacing: 0.03em;
}

/* ========== FORM FIELD (for future extension) ========== */
input, textarea, select {
  border-radius: 12px;
  border: 1.5px solid #F7C873;
  padding: 11px 17px;
  background: #fff;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #264653;
  background: #E9ECEF;
}

/* ========== DL for FAQ ========== */
dl {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: #264653;
  font-weight: 700;
  margin-bottom: 6px;
}
dd {
  font-size: 1rem;
  margin-left: 20px;
}

/* ========== LINK STATES ========== */
a {
  transition: color 0.22s, background 0.22s;
}
a:hover, a:focus {
  color: #F7C873;
  text-decoration: underline;
}
.btn-primary:hover, .btn-primary:focus {
  text-decoration: none;
}

/* ========== SPACING & FLEX PROTECTION ========== */
section, .card, .testimonial-card, .feature-list li, .service-list li, .card-container > *, .content-grid > *, .footer-contact > *, .footer-nav > *, .footer-social > * {
  margin-bottom: 0 !important;
}
.section:not(:last-child),
section:not(:last-child) {
  margin-bottom: 60px;
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 1000px) {
  .main-nav {
    gap: 15px;
  }
  .feature-list, .service-list {
    gap: 16px;
  }
  .footer-contact {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero-section {
    padding: 40px 0 32px 0;
    border-radius: 0 0 24px 24px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .testimonials-section, .features-section, .cta-section {
    padding: 30px 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section, section {
    padding: 24px 5px;
  }
  .feature-list, .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 18px 12px;
    font-size: .98rem;
    max-width: 100%;
  }
  .footer-contact {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-social {
    gap: 16px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .footer-social a {
    width: 36px;
    height: 36px;
  }
  .footer-social img {
    width: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 22px;
    padding: 20px 8px 14px 8px;
    align-items: flex-start;
    min-height: 84px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .cookie-modal {
    padding: 24px 8px 18px 8px;
    max-width: 95vw;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 14px;
  }
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .section, section {
    padding: 10px 1px;
  }
  .hero-section {
    padding: 22px 0 12px 0;
  }
  .cookie-banner {
    padding: 13px 2px 10px 2px;
    font-size: .91rem;
  }
}

/* ========== UTILITY CLASSES (for geometric/structured spacing or highlight) ========== */
.u-accent {
  color: #F7C873;
}
.u-bg-accent {
  background: #F7C873;
  color: #264653;
}
.u-bg-primary {
  background: #264653;
  color: #fff;
}
.u-bg-light {
  background: #fff;
}

/* ========== END ========== */
