/* 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,
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;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAF6ED;
  color: #183148;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #0C7B93;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #F2A365;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

/* VINTAGE RETRO FONTS (with fallbacks) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Impact, Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #0C7B93;
  font-weight: 900;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  text-shadow: 1px 2px 0 #fffac2, 1px 5px 12px #F2A36555;
  letter-spacing: 0.06em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 0.045em;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
  color: #183148;
  font-weight: 700;
}
.section h2 {
  color: #0C7B93;
  background: repeating-linear-gradient(90deg, #fff6e0, #fff6e0 16px, #f7e7c5 16px, #f7e7c5 32px);
  padding: 4px 20px;
  border-radius: 22px;
  box-shadow: 0 2px 5px #F2A36522;
  display: inline-block;
}
p, li, blockquote, span, label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #20212a;
  line-height: 1.75;
  margin-bottom: 14px;
}
blockquote {
  margin: 0 0 12px 0;
  padding-left: 20px;
  border-left: 5px solid #F2A365;
  background: #fff6e0;
  font-style: italic;
  color: #472f16;
  font-size: 1.05rem;
}

/* CONTAINER PATTERN */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.text-section {
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

/* SECTION SPACING & PATTERNS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: repeating-linear-gradient(-45deg, #fff6e0, #fff6e0 36px, #fed0bb 36px, #fed0bb 40px);
  border-radius: 18px;
  box-shadow: 0 4px 16px #E9E0C930;
}
section:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  section {
    padding: 24px 4px;
    margin-bottom: 36px;
    border-radius: 0;
  }
}

/* MAIN NAVIGATION */
header {
  background: #183148;
  padding: 0;
  width: 100%;
  z-index: 50;
  box-shadow: 0 10px 32px #0C7B9344;
  position: relative;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  gap: 14px;
}
header img {
  min-height: 42px;
  height: 46px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #F2A365;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 10px;
  transition: background 0.18s, color 0.2s;
  font-size: 1.12em;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f2a365;
  color: #183148;
}
.cta-btn {
  display: inline-block;
  padding: 11px 32px;
  font-family: 'Montserrat', 'Arial Black', Impact, Arial, sans-serif;
  font-weight: 900;
  font-size: 1.15em;
  color: #fff6e0;
  background: #F2A365;
  border-radius: 40px;
  text-shadow: 1px 2px 2px #0C7B9322;
  box-shadow: 0 3px 18px #f2a36544;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  margin-left: 18px;
  margin-bottom: 0;
  transition: box-shadow 0.15s, background 0.18s;
  outline: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #0C7B93;
  color: #fff6e0;
  box-shadow: 0 2px 22px #18314855;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 199;
  font-size: 2.3rem;
  color: #F2A365;
  background: #183148;
  border: 2px solid #F2A365;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px #18314844, 0 1px 4px #fed0bb55 inset;
  transition: background 0.15s, border 0.15s;
}
.mobile-menu-toggle:focus {
  border-color: #0C7B93;
  outline: none;
}
.mobile-menu {
  position: fixed;
  z-index: 300;
  background: #fff6e0;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 400px;
  min-height: 100vh;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.77,0,.175,1);
  box-shadow: -8px 0 40px #F2A36544;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.3rem;
  color: #F2A365;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 401;
  width: 30px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 64px 0 0 0;
  align-items: flex-start;
  padding: 0 30px 24px 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #183148;
  background: #fed0bb;
  border-radius: 16px;
  padding: 14px 18px;
  letter-spacing: 0.03em;
  transition: background 0.17s, color 0.18s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2A365;
  color: #fff6e0;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #183148;
  color: #fff6e0;
  padding: 28px 0 0 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F2A365;
  background: #183148;
  font-size: 1em;
  padding: 7px 14px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F2A365;
  color: #183148;
}
footer .text-section {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1em;
}
footer .text-section img {
  width: 35px;
  height: 35px;
}
footer .text-section span {
  color: #fff6e0;
  font-size: 1em;
}

/* SECTION CONTAINERS & FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: #fff6e0;
  box-shadow: 0 6px 24px #b79b7640, 0 2px 10px #fed0bb44 inset;
  padding: 30px 22px;
  min-width: 290px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* FEATURE GRID & ITEM */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 18px 0;
}
.feature-grid li {
  background: #fff6e0;
  border-radius: 16px;
  border: 2px dashed #F2A365;
  box-shadow: 0 2px 18px #f2a36533, 0 2px 6px #18314811;
  padding: 32px 26px 24px;
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.18s, border 0.16s;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  cursor: default;
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  box-shadow: 0 8px 32px #F2A36566, 0 4px 13px #F2A36544 inset;
  border-color: #0C7B93;
}
.feature-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
  background: #fed0bb;
  border-radius: 50%;
  box-shadow: 0 2px 8px #fed0bb44;
  padding: 3px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  background: #fff6e0;
  border-radius: 20px;
  box-shadow: 0 4px 18px #b79b7644;
  border: 2px solid #fed0bb;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #183148;
  font-size: 1rem;
  transition: box-shadow .16s, border .16s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  border-color: #F2A365;
  box-shadow: 0 8px 44px #f2a36544;
}
.testimonial-card blockquote {
  color: #472f16;
  font-size: 1.07em;
  margin-bottom: 0;
  border-left-color: #F2A365;
  background: none;
}
.testimonial-card span {
  color: #183148;
  font-weight: 700;
  font-size: 0.96em;
}

/* CONTACT DETAILS */
.contact-details {
  margin: 20px 0;
  background: #fff6e0;
  border-radius: 14px;
  box-shadow: 0 2px 12px #fed0bb44;
  padding: 20px 24px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #20212a;
}
.contact-details img {
  width: 26px;
  height: auto;
}
.map {
  margin: 16px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #0C7B93;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* BUTTONS */
button,
input[type="submit"],
input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  background: #F2A365;
  color: #fff6e0;
  border: none;
  border-radius: 19px;
  padding: 10px 28px;
  margin: 0 4px 0 0;
  transition: background 0.19s, box-shadow 0.15s;
  cursor: pointer;
  box-shadow: 0 2px 13px #fed0bb55;
}
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #0C7B93;
  color: #fff6e0;
  outline: none;
  box-shadow: 0 1px 19px #0C7B9344;
}

/* TABLES, FORMS (not really needed for this content, but for Normalize) */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Utility Spacing Classes */
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.ml-20 { margin-left: 20px; }
.gap-20 { gap: 20px; }

/* RESPONSIVE STYLES */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
    padding: 0 4vw;
  }
  .feature-grid li {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
    justify-content: flex-start;
  }
  .feature-grid li {
    min-width: 140px;
    padding: 20px 15px 16px;
  }
}
@media (max-width: 700px) {
  .footer-nav {
    gap: 12px;
  }
  .card,
  .feature-grid li,
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 18px 11px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.48rem;
  }
  h3 {
    font-size: 1.12rem;
  }
}
@media (max-width: 430px) {
  .cta-btn,
  button,
  input[type="submit"] {
    width: 100%;
    font-size: 1em;
    padding: 10px 0;
    margin: 6px 0;
  }
}

/* VINTAGE/RETRO PATTERNS & DECORATIVE ELEMENTS */
body, section {
  background-color: #fff6e0;
}
section {
  border: 3px solid #fed0bb;
  box-shadow: 0 2px 24px #fae3c8aa;
  background-image: repeating-linear-gradient(-25deg, #fff6e0 0, #fff6e0 36px, #fee0b6 36px, #fed0bb 40px);
}
.feature-grid li, .card, .testimonial-card {
  background: #fff6e0;
  border-radius: 16px;
  border: 2px dashed #F2A365;
  box-shadow: 0 2px 17px #fed0bb55;
  position: relative;
}
.feature-grid li::before,
.card::before,
.testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, #F2A365 70%, transparent 100%);
  border-radius: 50%;
  left: -15px;
  top: -15px;
  opacity: 0.15;
  z-index: 0;
}
.feature-grid li::after,
.card::after,
.testimonial-card::after {
  content: '';
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  background: #0C7B93;
  border-radius: 50%;
  right: -14px;
  bottom: -14px;
  opacity: 0.08;
  z-index: 0;
}

/* RETRO BADGE EFFECTS on headers */
h2, h1 {
  position: relative;
  z-index: 10;
}
h2::after {
  content: '';
  position: absolute;
  left: -18px; top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #F2A365;
  border-radius: 50%;
  opacity: 0.12;
  z-index: -1;
  filter: blur(2px);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #183148;
  color: #fff6e0;
  padding: 22px 6vw 18px 6vw;
  font-size: 1.07em;
  box-shadow: 0 -5px 22px #18314833;
  gap: 20px;
  flex-wrap: wrap;
  animation: cookie-fadein 0.7s cubic-bezier(.61,.09,.43,.97);
}
.cookie-banner.hidden {
  display: none;
}
@keyframes cookie-fadein {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner button {
  padding: 8px 18px;
  font-size: 1em;
  margin-right: 8px;
  margin-bottom: 4px;
  border-radius: 25px;
  background: #F2A365;
  color: #fff6e0;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 7px #fed0bb66;
  transition: background .19s;
}
.cookie-banner .reject-btn {
  background: #fed0bb;
  color: #183148;
}
.cookie-banner .settings-btn {
  background: #0C7B93;
  color: #fff6e0;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #183148;
  color: #fff6e0;
  outline: none;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 2001;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(24,49,72,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(.8,.36,.21,.93), visibility 0.22s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff6e0;
  color: #183148;
  border-radius: 18px;
  padding: 38px 28px;
  box-shadow: 0 3px 34px #18314877, 0 3px 18px #F2A36533 inset;
  max-width: 92vw;
  width: 370px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  animation: modal-bounce 0.6s cubic-bezier(.25,1.4,.3,1);
}
@keyframes modal-bounce {
  0% { transform: scale(.85) translateY(80px); opacity: 0.1; }
  60% { transform: scale(1.04) translateY(-10px); }
  80% { transform: scale(.98); }
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 20px;
  background: none;
  border: none;
  font-size: 1.7em;
  color: #F2A365;
  cursor: pointer;
}
.cookie-modal h2 {
  font-size: 1.35em;
  margin-bottom: 12px;
  color: #0C7B93;
  letter-spacing: 0.04em;
}
.cookie-preferences {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-type {
  padding: 10px 0 11px 0;
  font-size: 1em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0C7B93;
}
.cookie-type input[type="checkbox"] {
  accent-color: #F2A365;
  width: 21px;
  height: 21px;
}
.cookie-type.essential label, .cookie-type.essential {
  color: #183148;
  font-weight: 700;
}
.cookie-save-btn {
  background: #F2A365;
  color: #fff6e0;
  font-weight: 800;
  border: none;
  border-radius: 21px;
  padding: 10px 24px;
  cursor: pointer;
}
.cookie-save-btn:hover,
.cookie-save-btn:focus {
  background: #0C7B93;
}

/* RETRO INTERACTIONS */
.cta-btn, button, .mobile-menu-toggle {
  transition: transform .17s cubic-bezier(.91,-0.01,.38,1.15), box-shadow .12s;
}
.cta-btn:active, button:active, .mobile-menu-toggle:active {
  transform: translateY(2.5px) scale(.98);
}
/* Micro ripple effect for .cta-btn on click (retro shimmer) */
.cta-btn:focus::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 115%;
  height: 110%;
  background: radial-gradient(circle, #fed0bb55 60%, transparent 100%);
  border-radius: 48px;
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 5;
  animation: btn-ripple 0.44s linear;
}
@keyframes btn-ripple {
  0% { opacity: 0.1; }
  65% { opacity: 0.5; }
  100% { opacity: 0; }
}

/* RETRO DECORATIVE PATTERNS (subtle) */
@media (min-width: 992px) {
  section {
    background-image: repeating-linear-gradient(-25deg, #fff6e0 0, #fff6e0 36px, #fee0b6 36px, #fed0bb 40px),
      radial-gradient(circle at 92% 12%, #F2A36533 14%, transparent 70%);
  }
}

/* ========================= MOBILE ADJUSTMENTS ========================== */
@media (max-width: 670px) {
  header .container {
    flex-direction: column;
    gap: 10px;
  }
  .feature-grid {
    gap: 10px;
    justify-content: flex-start;
  }
  .feature-grid li {
    min-width: 90vw;
    padding: 13px 7px 12px;
  }
}

/* General Accessibility and Touch Target */
a, button, .cta-btn { outline: none; }
a:focus-visible,
button:focus-visible,
.cta-btn:focus-visible { outline: 2px solid #0C7B93; outline-offset: 2px; }

/* FORBIDDEN CSS GRID AND COLUMN PROPERTIES */
/* (none present) */
