/* ==== CSS Reset & Base ==== */
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #1C2833;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
main {
  flex: 1 0 auto;
}
ul, ol { list-style: none; }
a {
  color: #1C2833;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F7C873;
  outline: none;
}

/* ==== Brand Typography ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Times New Roman', Times, serif;
  color: #1C2833;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
.subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.12rem;
  color: #5a6472;
  margin-bottom: 24px;
  font-weight: 400;
}

/* ==== Generic Layout Containers ==== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  max-width: 740px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(28, 40, 51, 0.08);
  padding: 32px 28px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px rgba(28, 40, 51, 0.12);
  transform: translateY(-2px) scale(1.01);
}

/* ==== Header & Navigation ==== */
header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 40;
  border-bottom: 1px solid #edeef0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 20px;
}
header > a img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 7px;
  color: #1C2833;
  font-weight: 400;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7C873;
  color: #1C2833;
}
.cta-button {
  background: #1C2833;
  color: #fff;
  border: none;
  border-radius: 23px;
  padding: 12px 28px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  margin-left: 28px;
  margin-right: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(34,36,38,.04);
  transition: background 0.16s, box-shadow 0.18s, color 0.16s;
}
.cta-button:hover, .cta-button:focus {
  background: #F7C873;
  color: #1C2833;
  box-shadow: 0 4px 24px rgba(247,200,115,0.12);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.3rem;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
  display: none;
  color: #1C2833;
  margin-left: 12px;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F7C873;
}

/* ==== Mobile Menu Overlay ==== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,40,51,0.96);
  z-index: 100;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(.55,.035,.22,1.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 24px;
  margin-left: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.18s;
}
.mobile-menu-close:focus { outline: 2px solid #F7C873; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 48px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 6px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
  min-width: 170px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7C873;
  color: #1C2833;
}

/* ==== Banner & Sections ==== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child { margin-bottom: 0; }

/* ==== List Styles ==== */
ul {
  list-style: none;
  padding-left: 0;
}
ul > li {
  position: relative;
  padding-left: 0;
  margin-bottom: 14px;
  line-height: 1.5;
}
ul > li:last-child { margin-bottom: 0; }

/* ==== Table Styles ==== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  font-family: 'Open Sans', Arial, sans-serif;
  box-shadow: 0 1px 12px rgba(28,40,51,0.04);
}
thead {
  background: #F7C873;
}
thead th {
  color: #1C2833;
  padding: 16px 12px;
  font-size: 1.08rem;
  font-weight: 600;
  text-align: left;
}
tbody td {
  padding: 14px 12px;
  border-top: 1px solid #edeef0;
  font-size: 1rem;
  color: #242f3b;
}
tbody tr:first-child td { border-top: none; }

/* ==== Card and Feature Section ==== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* ==== Text-Image Section for Flexible Blocks ==== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ==== Testimonial Card ==== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: #DDE5ED;
  border-radius: 13px;
  box-shadow: 0 1px 6px rgba(28,40,51,0.06);
  min-width: 240px;
  max-width: 470px;
  flex: 1 0 280px;
}
.testimonial-card p {
  font-size: 1rem;
  color: #151c23;
}
.testimonial-card strong {
  color: #1C2833;
}
.testimonial-card div {
  color: #F7C873;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

/* ==== FAQ Details ==== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
details {
  background: #F9FAFC;
  border-radius: 9px;
  padding: 14px 18px;
  box-shadow: 0 1px 8px rgba(28,40,51,0.06);
  transition: box-shadow 0.15s;
}
details[open] {
  box-shadow: 0 4px 16px rgba(28,40,51,0.09);
}
summary {
  cursor: pointer;
  font-weight: 600;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.04rem;
  outline: none;
  color: #1C2833;
  margin-bottom: 7px;
}
summary::-webkit-details-marker { display: none; }
details p {
  margin-top: 8px;
  color: #293d50;
  font-size: 0.97rem;
}

/* ==== Footer ==== */
footer {
  background: #FAFCFE;
  border-top: 1px solid #edeef0;
  padding: 0;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 32px 0 28px 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-nav a {
  color: #454d59;
  font-size: 0.99rem;
  padding: 4px 0;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F7C873;
}
.footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.footer-contact p {
  color: #5a6472;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.footer-social {
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  display: block;
  filter: grayscale(0.8) brightness(1.12);
  transition: filter 0.18s, opacity 0.15s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: grayscale(0) brightness(1) drop-shadow(0 0 2px #F7C873);
  opacity: 0.88;
}

/* ==== Cookie Consent Banner ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #1C2833;
  box-shadow: 0 -2px 18px 0 rgba(28,40,51,0.13);
  padding: 22px 20px 19px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1200;
  gap: 11px;
  transition: transform 0.39s cubic-bezier(.5,.04,.21,1.01), opacity 0.22s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.closed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-text {
  font-size: 1.03rem;
  margin-bottom: 10px;
  color: #22292f;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  padding: 7px 22px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
}
.cookie-btn.accept {
  background: #1C2833;
  color: #fff;
}
.cookie-btn.reject {
  background: #edeef0;
  color: #1C2833;
}
.cookie-btn.settings {
  background: transparent;
  color: #1C2833;
  border: 1px solid #d6dae0;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 2px 12px rgba(28,40,51,0.09);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F7C873;
  color: #1C2833;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F7C873;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  border-color: #F7C873;
}

/* ==== Cookie Modal Popup ==== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 360px;
  max-width: 98vw;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 48px rgba(28,40,51,0.18);
  z-index: 1300;
  padding: 32px 24px 24px 24px;
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
  transition: opacity 0.29s, transform 0.17s;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal.closed {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-44%) scale(0.97);
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 9px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-size: 1.07rem;
  color: #151c23;
}
.cookie-toggle {
  width: 36px;
  height: 21px;
  background: #edeef1;
  border-radius: 22px;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
  margin-right: 8px;
  flex-shrink: 0;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 15px;
  height: 15px;
  background: #b2bac3;
  border-radius: 50%;
  transition: left 0.17s, background 0.17s;
}
.cookie-toggle input[type="checkbox"]:checked + .slider {
  background: #F7C873;
  left: 18px;
}
.cookie-category.essential label {
  opacity: 0.7;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  align-items: center;
}
.cookie-modal-close {
  position: absolute;
  right: 17px;
  top: 17px;
  background: none;
  border: none;
  color: #1C2833;
  font-size: 1.4rem;
  cursor: pointer;
}
.cookie-modal-close:focus {
  outline: 2px solid #F7C873;
}

/* ==== Responsive Design (Mobile-First) ==== */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  header .main-nav {
    gap: 17px;
    margin-left: 16px;
  }
  .cta-button { padding: 10px 20px; margin-left: 15px; }
  footer .content-wrapper { gap: 15px; }
  .testimonial-card { max-width: 99vw; }
}
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    height: auto;
    min-height: 68px;
    padding-top: 9px;
    padding-bottom: 9px;
    gap: 6px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .cta-button { margin-left: 0; margin-top: 7px; }
  section, .section {
    padding: 26px 4vw 0 4vw;
    margin-bottom: 38px;
  }
  .content-wrapper,
  .content-grid, .card-container {
    gap: 14px;
  }
  .footer-social { margin-top: 16px; }
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    padding: 21px 0 18px 0;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px 15px;
    margin-bottom: 7px;
  }
  .footer-contact { font-size: 0.95rem; }
  .testimonial-card { padding: 15px 10px; min-width: 0; }
  .faq-list { gap: 14px; }
}
@media (max-width: 580px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .content-wrapper, .text-section { max-width: 100vw; }
  .footer-social a img { width: 24px; height: 24px; }
  .cookie-modal { min-width: 0; padding: 20px 9px 18px 11px; }
  .cookie-banner { padding: 15px 8px; }
}
@media (max-width: 520px) {
  header { padding: 0 5px; }
  .container { padding: 0 5px; }
}

/* ==== Utilities ==== */
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.mb-20 { margin-bottom: 20px; }
.text-center { text-align: center; }

/* ==== Smooth Transitions for UI ==== */
body, button, a, .cta-button, .cookie-btn, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: background 0.18s, color 0.16s, box-shadow 0.2s, border 0.13s;
}

/* ==== Hide visually but keep accessible ==== */
.sr-only { position:absolute; width:1px; height:1px; padding:0; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ==== Secondary Call-to-action ==== */
.secondary-cta {
  margin-top: 20px;
}
.secondary-cta .cta-button {
  background: #F7C873;
  color: #1C2833;
  font-weight: 700;
  margin: 0;
  border: none;
}
.secondary-cta .cta-button:hover, .secondary-cta .cta-button:focus {
  background: #1C2833;
  color: #fff;
}

/* ==== Minimalist Aesthetic ==== */
section, .container, .card, .testimonial-card, .cookie-banner, .cookie-modal {
  box-shadow: 0 2px 14px rgba(34,49,63,0.04);
}
section, .container, .card, .testimonial-card {
  border-radius: 12px;
}

/* ==== Miscellaneous ==== */
::-webkit-input-placeholder { color: #adb5bd; }
::-moz-placeholder { color: #adb5bd; }
:-ms-input-placeholder { color: #adb5bd; }
::placeholder { color: #adb5bd; }

/***************** END *****************/

