/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F6F8;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #20485A;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}
a {
  color: #20485A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #E1B371;
  outline-offset: 2px;
}
*:focus-visible {
  outline: 2px solid #E1B371;
  outline-offset: 2px;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #20485A;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; }
p, ul, ol { font-size: 1rem; margin-bottom: 20px; }
strong, b { font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
  p, ul, li { font-size: 0.98rem; }
}

/* Container & Utilities */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* Sections */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
}
@media (max-width: 768px) {
  section {
    padding: 30px 0;
    margin-bottom: 36px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Header */
header {
  width: 100%;
  background: linear-gradient(96deg, #F4F6F8 85%, #E1B371 100%);
  box-shadow: 0 2px 12px rgba(32,72,90,0.05);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  header .container {
    height: 62px;
  }
  .logo img {
    height: 38px;
  }
}

/* Main Navigation */
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  color: #20485A;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a:active {
  color: #E1B371;
}

/* Hide Main Navigation on Mobile */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
}

/* CTA Button */
.btn-primary {
  background: linear-gradient(95deg, #E1B371 0%, #FFD897 90%);
  color: #20485A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 3px 14px rgba(32,72,90,0.12);
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.25s, background 0.2s, color 0.2s, transform 0.13s;
  margin-left: 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #FFD897 25%, #E1B371 95%);
  box-shadow: 0 4px 24px rgba(32,72,90,0.17);
  color: #18303E;
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 1020px) {
  .btn-primary {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Burger menu button */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #20485A;
  display: none;
  cursor: pointer;
  padding: 6px 12px;
  transition: background 0.15s;
  z-index: 100;
  border-radius: 12px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(225,179,113,0.13);
}
@media (max-width: 1020px) {
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #ffffff;
  box-shadow: 0 2px 22px rgba(32,72,90,0.20);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  z-index: 110;
  display: flex;
  flex-direction: column;
  padding: 0;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #20485A;
  align-self: flex-end;
  padding: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E1B371;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  padding: 24px 32px;
}
.mobile-nav a {
  color: #20485A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 12px 0;
  width: 100%;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F6F8;
  color: #E1B371;
}

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

/* Hero & Gradient section styling */
section:first-of-type {
  background: linear-gradient(92deg, #F4F6F8 60%, #E1B371 110%);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 18px 48px -9px rgba(225,179,113,0.10);
}

/* Feature Grid, Card Containers, Layouts */
.feature-grid, .services-list, .price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  list-style: none;
}

.feature-grid li, .services-list li {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 1px 10px rgba(32,72,90,0.06);
  padding: 24px 20px 20px 20px;
  flex: 1 1 275px;
  min-width: 250px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.27s, transform 0.19s;
  margin-bottom: 20px;
}
.feature-grid li:hover, .services-list li:hover {
  box-shadow: 0 10px 35px rgba(225,179,113,0.15), 0 2px 12px rgba(32,72,90,0.10);
  transform: translateY(-3px) scale(1.015);
}
.feature-grid img, .services-list img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
}

.price-list li {
  background: #fff;
  padding: 18px 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  box-shadow: 0 1px 10px rgba(32,72,90,0.06);
}
.price-list span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #E1B371;
  font-weight: 700;
  font-size: 1.08rem;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 10px rgba(32,72,90,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 24px 22px 24px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .feature-grid li, .services-list li {
    flex: 1 1 100%;
    min-width: 200px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .feature-grid, .services-list, .price-list {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .section {
    padding: 24px 12px;
    margin-bottom: 32px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* Quality Statement (about) */
.quality-statement {
  background: linear-gradient(92deg,#FFEBC1 40%,#F4F6F8 100%);
  padding: 16px 24px;
  border-radius: 14px;
  margin-top: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #20485A;
  box-shadow: 0 1px 8px rgba(32,72,90,0.07);
}

/* CTA Section */
.cta-section {
  align-items: center;
  background: linear-gradient(90deg, #FFEBC1 65%, #E1B371 100%);
  border-radius: 22px;
  padding: 36px 24px;
  box-shadow: 0 1px 30px rgba(225,179,113,0.11);
  text-align: center;
}
.cta-section h2 {
  color: #20485A;
}
.cta-section .btn-primary {
  margin-top: 8px;
}

/* Testimonial Card Styling */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(32,72,90,0.095);
  margin-bottom: 20px;
  max-width: 520px;
  font-size: 1.05rem;
  color: #20485A;
  transition: box-shadow 0.22s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(32,72,90,0.18);
  transform: translateY(-2px) scale(1.012);
}
.testimonial-card p {
  color: #293C45;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card b {
  color: #E1B371;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
    font-size: 0.97rem;
  }
}

/* Footer */
footer {
  background: linear-gradient(90deg, #20485A 89%, #E1B371 100%);
  color: #ffffff;
  padding: 44px 0 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #E1B371;
}
.contact-block p, .contact-block a {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}
footer img {
  height: 42px;
  margin-bottom: 12px;
}
@media (max-width: 980px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 20px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 20px;
  }
}

/* Misc List Styles */
ul, ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 10px;
}
.text-section ul {
  padding-left: 25px;
}

/* Table, Form, etc. (not used but normalize) */
table {border-collapse: collapse; border-spacing: 0;}
input, button, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}
button {cursor: pointer;}

/* Feature Item (not directly in HTML, for future extensibility) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #20485A;
  color: #fff;
  box-shadow: 0 -2px 18px rgba(32,72,90,0.18);
  padding: 24px 20px;
  z-index: 120;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  animation: cookiefadein 0.43s ease;
}
@keyframes cookiefadein { from {opacity:0; transform:translateY(100%);} to {opacity: 1; transform: translateY(0);} }
.cookie-banner__message {
  flex: 1 1 auto;
  margin-right: 24px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}

.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 22px;
  padding: 9px 25px;
  font-size: 1rem;
  font-weight: 600;
  background: #E1B371;
  color: #20485A;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
  margin: 0;
  box-shadow: 0 1px 5px rgba(32,72,90,0.07);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD897;
  color: #18303E;
}
.cookie-btn.cookie-btn-settings {
  background: #F4F6F8;
  color: #20485A;
  border: 1px solid #E1B371;
}
.cookie-btn.cookie-btn-settings:hover, .cookie-btn.cookie-btn-settings:focus {
  background: #fff;
  border-color: #FFD897;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 10px;
  }
  .cookie-banner__message {
    margin-right: 0;
  }
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,72,90,0.38);
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiefadein 0.29s ease;
}
.cookie-modal {
  background: #fff;
  color: #20485A;
  min-width: 310px;
  max-width: 98vw;
  border-radius: 18px;
  box-shadow: 0 6px 30px rgba(32,72,90,0.19);
  padding: 32px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: cookiezoom 0.38s cubic-bezier(.57,1.24,.33,1.02);
}
@keyframes cookiezoom { from {transform: scale(0.9); opacity: 0;} to {transform: scale(1.0); opacity: 1;} }
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #20485A;
  cursor: pointer;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cookie-modal-category {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-category label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.cookie-modal-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #F4F6F8;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.16s;
  border: 1.5px solid #E1B371;
}
.cookie-modal-toggle:checked {
  background: #E1B371;
}
.cookie-modal-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-modal-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 16px;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 20px 8px 16px 8px;
  }
  .cookie-modal-category label {
    font-size: 0.96rem;
  }
}

/* Animations and Micro-interactions */
a, .btn-primary, .cookie-btn, .main-nav a, .mobile-nav a, .footer-nav a, .feature-grid li, .services-list li, .card, .testimonial-card {
  transition: color 0.23s, box-shadow 0.13s, background 0.21s, transform 0.12s;
}

/* Accessibility: hide visually for screenreaders only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Spacing Helpers (for content) */
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-32 { margin-top: 32px !important; }

/* Responsive adjustments */
@media (max-width: 600px) {
  .feature-grid li, .services-list li {
    padding: 18px 10px;
    min-width: 100px;
    font-size: 0.97rem;
  }
  .card {
    padding: 18px 6px 14px 10px;
  }
}

/* Hide scroll when mobile menu/cookie modal open */
body.mobile-menu-open, body.cookie-modal-open {
  overflow: hidden;
}
