/* CSS RESET & BASE ------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F6F4;
  color: #322C20;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #009999;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #003366;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  color: #003366;
  font-weight: 700;
  margin-bottom: 22px;
}
h2 {
  font-size: 1.7rem;
  color: #007886;
  font-weight: 600;
}
h3 {
  font-size: 1.2rem;
  color: #009999;
  font-weight: 500;
  margin-bottom: 14px;
}
p {
  margin-bottom: 1.1rem;
}
strong {
  color: #574522;
  font-weight: 600;
}

/* LAYOUT CONTAINERS ------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 51, 102, 0.06);
  padding: 36px 26px;
  margin-bottom: 20px;
}
.text-section {
  background: #F2F2F2;
  box-shadow: 0 4px 20px rgba(242, 190, 120, 0.05);
}
.section:last-child,
.content-wrapper:last-child {
  margin-bottom: 0;
}

/* FLEXBOX SPECIFIC CONTAINERS --------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(0, 51, 102, 0.07);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  min-width: 250px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF8F3;
  border-radius: 17px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(242, 126, 0, 0.07);
  border: 1px solid #FFE2BF;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F9F5F3;
  border-radius: 13px;
  padding: 18px 20px;
}

/* LISTS & TABLES ---------------------------------------- */
ul li, ol li {
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin: 22px 0;
  background: #fff6ec;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(255,186,92,0.05);
  overflow: hidden;
}
th, td {
  padding: 14px 18px;
  text-align: left;
}
th {
  background: #ffd5ad;
  color: #003366;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}
td {
  font-size: 1rem;
  border-bottom: 1px solid #FFE2BF;
}
tr:last-child td {
  border-bottom: none;
}

/* HEADER ----------------------------------------------- */
header {
  background-color: #FFE8D2;
  box-shadow: 0 6px 32px -10px rgba(0,51,102,0.12);
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 10px;
}
header img {
  height: 48px;
  border-radius: 12px;
  background: none;
  margin-right: 20px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 22px;
  color: #003366;
  transition: background .18s, color .18s, box-shadow .18s;
}
nav a.cta {
  background: #009999;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 153, 153, 0.06);
  border-radius: 26px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
nav a.cta:hover,
nav a.cta:focus {
  background: #003366;
  color: #fffbe9;
}
nav a:hover:not(.cta), nav a:focus:not(.cta) {
  background: #FFD4AE;
  color: #322C20;
}

/* MOBILE MENU ------------------------------------------ */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #003366;
  font-size: 2rem;
  padding: 4px 12px;
  border-radius: 16px;
  cursor: pointer;
  margin-left: 10px;
  display: none;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFD4AE;
  outline: none;
}
/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF8F3;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 26px 0 26px;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.7,.2,.2,1);
  box-shadow: -6px 0 32px rgba(0,51,102,0.09);
  will-change: transform;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #003366;
  font-size: 1.8rem;
  align-self: flex-end;
  margin-bottom: 18px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 12px;
  transition: background 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFD4AE;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: #007886;
  padding: 14px 16px;
  border-radius: 20px;
  background: none;
  transition: background .16s, color .16s;
  margin: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFE6CA;
  color: #003366;
}

/* Hide normal nav/show burger on mobile */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 900px) {
  .mobile-menu {
    padding-top: 18px;
  }
}

/* FOOTER ----------------------------------------------- */
footer {
  background: #003366;
  color: #fff;
  padding: 50px 0 0 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
footer img {
  height: 52px;
  border-radius: 13px;
}
footer nav {
  flex-direction: column;
  gap: 14px;
}
footer nav a {
  color: #ffe8a3;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 16px;
  padding: 6px 12px;
  transition: background .15s, color .16s;
}
footer nav a:hover,
footer nav a:focus {
  color: #fffbe8;
  background: #009999;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: #fff;
}
.footer-contact img {
  height: 1.2em;
  vertical-align: middle;
  filter: brightness(92%) saturate(1.5);
}

/* BUTTONS ---------------------------------------------- */
.cta,
button,
input[type="submit"] {
  display: inline-block;
  background: #FF8600;
  color: #fff;
  border: none;
  border-radius: 28px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 34px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 4px 16px rgba(255, 162, 55, 0.11), 0 1.5px 6px rgba(0,51,102,0.05);
  transition: background .16s, box-shadow .19s, transform .12s;
}
.cta:hover, .cta:focus, button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #003366;
  color: #fffbe9;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 18px rgba(0,51,102,0.16);
  outline: none;
}

/* TESTIMONIALS ----------------------------------------- */
.testimonial-card {
  color: #332414;
  border-left: 6px solid #FFD799;
  background: #FFF8F3;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(255, 173, 70, 0.06);
  border-radius: 17px;
}
.testimonial-card p {
  font-size: 1.13rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #5e4632;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #FF8600;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.star-rating {
  color: #FFB300;
  font-size: 1.25rem;
  letter-spacing: 2px;
  user-select: none;
}

/* SPECIAL COMPONENTS ----------------------------------- */
dt {
  font-weight: 600;
  color: #003366;
  margin-top: 18px;
  margin-bottom: 4px;
}
dd {
  margin-bottom: 15px;
  color: #665540;
}

/* Responsive images in lists */
ul img, li img, .footer-contact img {
  height: 1.25em;
  width: 1.25em;
  display: inline;
  vertical-align: middle;
  margin-right: 7px;
  border-radius: 6px;
  background: none;
}

/* COOKIE CONSENT BANNER -------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff6ec;
  color: #332414;
  border-top: 2px solid #FFE2BF;
  box-shadow: 0 -3px 20px rgba(255, 146, 46, 0.10);
  padding: 22px 20px 18px 20px;
  z-index: 2100;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  font-size: 1rem;
  transition: transform 0.26s, opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  flex: 1;
  min-width: 0;
}
.cookie-banner .cookie-btn {
  background: #FF8600;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 21px;
  margin-right: 8px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.14s;
  box-shadow: 0 2px 8px rgba(255, 146, 46, 0.09);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #003366;
  color: #fffbe9;
}
.cookie-banner .cookie-btn.secondary {
  background: #FFD799;
  color: #4C3920;
  border: 1.5px solid #FFBA31;
}
.cookie-banner .cookie-btn.secondary:hover,
.cookie-banner .cookie-btn.secondary:focus {
  background: #FFD799;
  color: #003366;
}

/* COOKIE MODAL ----------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(51,44,32,0.16);
  z-index: 3000;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  display: flex;
  flex-direction: column;
  gap: 19px;
  min-width: 320px;
  max-width: 99vw;
  background: #fffefb;
  border-radius: 20px;
  padding: 36px 26px 30px 26px;
  box-shadow: 0 8px 48px rgba(0, 51, 102, 0.13);
  color: #332414;
  transition: transform 0.24s;
  position: relative;
}
.cookie-modal .modal-title {
  font-family: 'Oswald', Arial, sans-serif;
  color: #003366;
  font-size: 1.32rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.cookie-modal .modal-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-modal .category-title {
  color: #FF8600;
  font-weight: 600;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.12rem;
}
.cookie-toggle {
  width: 42px; height: 24px;
  background: #FFD799;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  display: block;
  position: absolute;
  top: 2px; left: 4px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s, background 0.15s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.10);
}
.cookie-toggle input:checked + span {
  left: 18px;
  background: #FF8600;
}
.cookie-modal .always-on {
  color: #668233;
  font-size: .98rem;
  margin-left: 2px;
  font-weight: 500;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #FF8600;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 10px;
  padding: 3px 9px;
  transition: background .11s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #FFE8D2;
}

/* FORM ELEMENTS ---------------------------------------- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px 14px;
  font-size: 1rem;
  border-radius: 13px;
  border: 1.2px solid #FFE2BF;
  background: #fffbf7;
  margin-bottom: 18px;
  width: 100%;
  transition: border .13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #009999;
  outline: none;
}
label {
  font-weight: 500;
  margin-bottom: 6px;
  display: inline-block;
}

/* MEDIA QUERIES (MOBILE-FIRST) ------------------------- */
@media (max-width: 768px) {
  body {
    font-size: 0.97rem;
  }
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.17rem;
  }
  .container {
    padding: 0 7px;
  }
  .section {
    margin-bottom: 38px;
    padding: 25px 7px;
  }
  .content-wrapper, .content-wrapper.text-section {
    padding: 18px 8px;
    gap: 10px;
    border-radius: 13px;
  }
  .card {
    padding: 15px 8px;
    border-radius: 11px;
    min-width: 0;
  }
  .card-container, .content-grid {
    gap: 12px;
  }
  .testimonial-card, .feature-item {
    padding: 14px 10px;
    border-radius: 11px;
    font-size: .97rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .footer-contact, footer .container {
    gap: 20px !important;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 5px;
  }
}

@media (max-width: 440px) {
  .cookie-modal {
    min-width: 0;
    padding: 20px 8px 14px 8px;
    border-radius: 12px;
    font-size: 0.97rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: .96rem;
    padding: 15px 6px 10px 6px;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS ---------------------- */
.cta, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a, nav a {
  transition: background .15s, color .16s, transform .13s;
}
.cta:active, .cookie-btn:active, .mobile-nav a:active {
  transform: scale(0.97);
}

/* UTILITIES -------------------------------------------- */
.hide { display: none !important; }
.visible { display: block !important; }

/* Z-INDEXS --------------------------------------------- */
.mobile-menu, .cookie-modal-overlay {
  z-index: 2100;
}

/* END */
