/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: #FFF8F4;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FFF8F4;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}
a {
  color: #27546B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D68A60;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 700;
}

/* FONT FACE (google fonts assumed to be loaded externally) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #27546B;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.8rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 9px; color: #A55329; }
h5, h6 { font-size: 1rem; }

p, li, ul, ol {
  font-size: 1rem;
  color: #333;
  margin-bottom: 14px;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}

.subheadline {
  font-size: 1.2rem;
  color: #376981;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 16px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER & NAVIGATION */
header {
  background: #FFFFFFDD;
  box-shadow: 0 4px 20px rgba(39,84,107,0.05);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 80px;
}
.logo img {
  height: 48px;
  width: auto;
  border-radius: 10px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #376981;
  padding: 8px 12px;
  border-radius: 22px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #B8D3C5;
  color: #27546B;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #D68A60;
  color: #fff;
  border: none;
  outline: none;
  padding: 13px 32px;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 5px 24px rgba(214,138,96,0.09);
  cursor: pointer;
  margin-left: 30px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ba6230;
  color: #FFF;
  box-shadow: 0 8px 28px rgba(214,138,96,0.15);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

/* MOBILE NAV STYLES */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #D68A60;
  cursor: pointer;
  margin-left: 20px;
  display: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFF5EA;
  color: #ba6230;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #FFF8F4ee;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.8,0,0.2,1);
  box-shadow: -8px 0 40px rgba(39,84,107,0.06);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  margin: 24px 18px 0 0;
  color: #D68A60;
  cursor: pointer;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #FFF5EA;
  color: #ba6230;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  width: 100%;
  padding: 44px 30px 0 42px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #27546B;
  padding: 10px 0 10px 8px;
  width: 100%;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F2E4DD;
  color: #D68A60;
  outline: none;
}

@media (max-width: 1020px) {
  header .container {
    padding: 0 8px;
    gap: 0;
  }
  .main-nav {
    gap: 14px;
    margin-left: 12px;
  }
  .cta-btn {
    margin-left: 14px;
    padding: 12px 22px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* HERO & SECTIONS */
.hero, .cta, .services, .about, .features, .testimonials, .contact-details, .location, .about-location, .content-guide, .privacy-policy, .gdpr-policy, .cookie-policy, .terms-service {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  box-shadow: 0 8px 36px rgba(39,84,107,0.04);
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero {
  background: linear-gradient(105deg, #FFF8F4 60%, #F2E4DD 100%);
  box-shadow: 0 16px 60px rgba(39,84,107,0.08);
  text-align: left;
  align-items: center;
  margin-top: 24px;
}
.cta {
  background: linear-gradient(105deg, #FFF8F4 75%, #B8D3C5 100%);
  text-align: center;
  align-items: center;
}
.info-box {
  background: #F9E8DD;
  border-radius: 20px;
  padding: 22px 30px;
  box-shadow: 0 2px 12px rgba(214,138,96,0.06);
  margin-top: 18px;
  margin-bottom: 12px;
}
.info-box h4 {
  color: #ba6230;
  margin-bottom: 8px;
}

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

/* FLEXBOX LAYOUTS (MANDATORY CLASSES FROM BRIEF) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* END MANDATORY FLEXBOX PATTERNS */

/* FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 20px;
}
.feature-item {
  background: #FFF8F4;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(184,211,197,0.11);
  padding: 26px 24px 20px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  transition: box-shadow 0.17s, transform 0.13s;
  border: 1px solid #F2E4DD;
}
.feature-item img {
  height: 46px; width: 46px; margin-bottom: 8px; background: #FFF; padding: 7px; border-radius: 10px; box-shadow: 0 2px 10px rgba(214,138,96,0.04);
}
.feature-item h3 {
  color: #A55329;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 26px rgba(214,138,96,0.15);
  transform: translateY(-4px) scale(1.02);
}

/* TESTIMONIALS */
.testimonials {
  background: #F9E8DD;
  border-radius: 32px;
  box-shadow: 0 8px 44px rgba(214,138,96,0.04);
  padding: 36px 18px;
}
.testimonials h2 {
  text-align: center;
}
.testimonial-card {
  background: #FFF;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(184,211,197,0.14);
  padding: 22px 34px 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-direction: row;
  transition: box-shadow 0.22s, transform 0.13s;
  color: #222;
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 34px rgba(214,138,96,0.14);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  font-style: italic;
  color: #27546B;
  font-size: 1.11rem;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #A55329;
  margin-top: 13px;
  font-weight: 600;
}

/* FAQ */
.faq {
  background: #f6fbf7;
  border-radius: 14px;
  padding: 18px 19px 10px 19px;
  margin-top: 16px;
  box-shadow: 0 2px 12px rgba(39,84,107,0.05);
}
.faq h3 {
  color: #A55329;
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.faq-question {
  margin-bottom: 14px;
}
.faq-question strong {
  font-size: 1.05rem;
  color: #27546B;
}

/* CARDS & LISTS */
.tip-list, .faq ul, .content-guide ul, .content-guide ol {
  list-style: disc inside;
  margin-bottom: 24px;
  color: #346371;
}
.tip-list li, .content-guide ul li, .content-guide ol li {
  margin-bottom: 10px;
}

.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f0f4ea;
  border-radius: 18px;
  padding: 16px 22px;
  margin: 15px 0;
}

/* CONTACT DETAILS */
.contact-details ul, .about-location ul {
  list-style: none;
  margin: 11px 0 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details li, .about-location li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.07rem;
}
.contact-details li img {
  width: 25px;
  height: 25px;
  background: #f4e3d5;
  padding: 3px;
  border-radius: 8px;
}

/* FOOTER */
footer {
  background: #FFF;
  border-top: 2px solid #B8D3C5;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  padding: 20px 0 12px 0;
  box-shadow: 0 -3px 32px rgba(39,84,107,0.035);
  margin-top: 32px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #A55329;
  font-size: 0.97rem;
  padding: 5px 12px;
  border-radius: 16px;
  background: #fff5ea;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #f3dccd;
  color: #27546B;
}
.footer-info p {
  font-size: 0.95rem;
  color: #A55329;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFF8F4;
  box-shadow: 0 -2px 30px rgba(39,84,107,0.11);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 22px 18px 16px 18px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: cookieSlideIn 0.45s cubic-bezier(0.85,0,0.2,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(150%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.cookie-banner p {
  color: #346371;
  font-size: 1rem;
  margin-bottom: 5px;
}
.cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 32px;
  padding: 11px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.14s;
}
.cookie-banner .accept-all {
  background: #D68A60;
  color: #FFF;
  box-shadow: 0 2px 8px rgba(214,138,96,0.08);
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #ba6230;
}
.cookie-banner .reject-all {
  background: #B8D3C5;
  color: #27546B;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #a8bcae;
}
.cookie-banner .settings {
  background: #FFF;
  color: #A55329;
  border: 1px solid #D68A60;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff5ea;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(39,84,107,0.21);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  animation: fadeModalBg 0.25s ease-in;
}
@keyframes fadeModalBg {
  from { background: rgba(39,84,107,0); } to { background: rgba(39,84,107,0.21); }
}
.cookie-modal {
  background: #FFFFFF;
  border-radius: 28px;
  max-width: 420px;
  width: 95%;
  box-shadow: 0 12px 52px rgba(39,84,107,0.13);
  padding: 34px 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: cookieSlideModal 0.38s cubic-bezier(0.85,0,0.2,1);
}
@keyframes cookieSlideModal {
  from { transform: translateY(-80px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #27546B;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #376981;
}
.cookie-modal .switch {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}
.cookie-modal .switch input {
  opacity: 0; width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F2E4DD;
  border-radius: 16px;
  transition: background 0.18s;
}
.cookie-modal .switch input:checked + .slider {
  background: #D68A60;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(214,138,96,0.08);
  transition: transform 0.17s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(15px);
}
.cookie-modal .category-desc {
  font-size: 0.96rem;
  color: #888;
  margin-left: 18px;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  position: absolute;
  top: 19px; right: 23px;
  font-size: 1.7rem;
  color: #D68A60;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background 0.14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #FFF5EA;
}
.cookie-modal .cookie-modal-save {
  margin-top: 7px;
  align-self: flex-end;
  background: #D68A60;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(214,138,96,0.07);
  transition: background 0.18s;
}
.cookie-modal .cookie-modal-save:hover, .cookie-modal .cookie-modal-save:focus {
  background: #ba6230;
}

/* RESPONSIVE DESIGN */
@media (max-width: 950px) {
  .feature-grid { gap: 20px; }
  .feature-item { padding: 20px 14px 16px 14px; }
}
@media (max-width:768px) {
  .hero, .cta, .services, .about, .features, .testimonials, .contact-details, .location, .about-location, .content-guide, .privacy-policy, .gdpr-policy, .cookie-policy, .terms-service {
    padding: 30px 9px;
    border-radius: 20px;
    margin-bottom: 46px;
  }
  .container { padding: 0 7px; }
  header .container { padding: 0 2px; height: 62px; }
  .main-nav, .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
  .feature-grid {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
  .feature-item {
    max-width: 100%; min-width: 0;
    width: 100%;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px 12px;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
  }
  .text-image-section { flex-direction: column; gap: 17px; align-items: flex-start; }
  .footer-nav { gap: 10px; flex-wrap: wrap; }
  footer .container { flex-direction: column; gap: 8px; }
  .cookie-modal { padding: 18px 8px 16px; }
}

@media (max-width: 540px) {
  h1 { font-size: 1.4rem; margin-bottom: 14px; }
  h2 { font-size: 1.12rem; margin-bottom: 8px; }
  h3 { font-size: 1rem; margin-bottom: 7px; }
  .hero, .cta, .services, .features, .testimonials, .about, .content-guide, .privacy-policy,
  .gdpr-policy, .cookie-policy, .terms-service, .location, .about-location {
    padding: 11px 1px;
    border-radius: 10px;
    margin-bottom: 25px;
  }
}

/* MICRO-INTERACTIONS & BUTTONS */
button, .cta-btn, .cookie-modal-save {
  transition: background 0.14s, color 0.12s, box-shadow 0.15s, transform 0.13s;
  outline: none;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* Utility */
.text-center { text-align: center; }
.text-left { text-align: left; }
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.align-center { align-items: center; }

/* Hide visually for accessibility purposes */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }

/* Focus styles for accessibility */
a:focus, button:focus, .cookie-modal-close:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus, .cta-btn:focus {
  box-shadow: 0 0 0 3px #B8D3C5;
}

/* END OF STYLE.CSS */
