/* RESET & BASELINE NORMALIZATION */
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,nav,section,main,article,aside,header,footer,figure,figcaption {
  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 {
  background: #F1EFEF;
  color: #243549;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #243549;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

p, li, address, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}

p, ul, ol {
  margin-bottom: 16px;
}
strong { font-weight: 600; }
a {
  color: #40768C;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #243549;
  outline: none;
}

.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 32px;
  color: #40768C;
  line-height: 1.5;
}

/* LAYOUT & CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

main {
  flex: 1 0 auto;
  width: 100%;
  margin-top: 0;
}

/* HEADER & NAVIGATION */
header {
  background: #243549;
  padding: 0 0 0 0;
  width:100%;
  border-bottom: 5px solid #40768C;
  display: flex;
  flex-direction: column;
  z-index: 40;
}
.logo {
  display: flex;
  align-items: center;
  padding: 20px 0 16px 20px;
  height: 60px;
  transition: opacity .2s;
}
.logo img {
  height: 38px;
  width: auto;
  block-size: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 0 20px 0 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: #F1EFEF;
  padding: 12px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color .2s, color .16s;
}
.main-nav a:focus, .main-nav a:hover {
  color: #FFD943;
  border-bottom: 2.5px solid #FFD943;
}
.cta-nav {
  background: #FFD943;
  color: #243549 !important;
  border-radius: 0 22px 22px 0;
  padding: 11px 26px 11px 22px;
  border: none;
  margin-left: 20px;
  box-shadow: 0 2px 8px 0 rgba(36,53,73,0.08);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  transition: box-shadow .2s, color .2s, background .2s;
}
.cta-nav:hover,.cta-nav:focus {
  background: #243549;
  color: #FFD943 !important;
  border: 2.5px solid #FFD943;
  box-shadow: 0 4px 16px 0 rgba(36,53,73,.12);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F1EFEF;
  font-size: 2rem;
  padding: 12px 16px 12px 0;
  cursor: pointer;
  z-index: 121;
  align-self: flex-end;
  margin-right: 16px;
  transition: color .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #FFD943;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36,53,73,0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 28px 32px;
  z-index: 150;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.61,.13,.43,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFD943;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 32px;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #F1EFEF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 0;
  border-left: 5px solid transparent;
  transition: border-color .2s, color .2s;
  width: 100%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #FFD943;
  border-left: 5px solid #FFD943;
}

/* HERO SECTION */
.hero {
  background: #243549;
  color: #F1EFEF;
  border-bottom: 8px solid #40768C;
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.hero h1, .hero .subheadline {
  color: #F1EFEF;
}
.hero .cta-button {
  margin-top: 24px;
}

/* BUTTONS & LINKS */
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #40768C;
  color: #fff;
  padding: 14px 36px;
  font-weight: 700;
  border-radius: 0 32px 0 32px;
  box-shadow: 0 2px 18px 0 rgba(36,53,73,0.10);
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .19s;
  margin-bottom: 12px;
}
.cta-button:focus, .cta-button:hover {
  background: #243549;
  color: #FFD943;
  box-shadow: 0 6px 24px 0 rgba(36,53,73,0.16);
}

.cta-link {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #40768C;
  border: 2.5px solid #40768C;
  border-radius: 24px 0 24px 0;
  padding: 8px 18px;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  letter-spacing: 0.04em;
  background: #F1EFEF;
  transition: background .16s, color .16s, border .2s;
}
.cta-link:focus, .cta-link:hover {
  background: #40768C;
  color: #F1EFEF;
  border: 2.5px solid #243549;
}

button:focus { outline:3px solid #FFD943; }

/* SECTION SPACING (MANDATORY) */
.section, .features, .about, .about-preview, .destinations-preview, .testimonials-preview, .blog-preview, .contact-cta, .contact-info, .testimonials, .blog-popular-topics, .legal, .about-support {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: #F1EFEF;
  border-radius: 40px 0 40px 0;
  box-shadow: 0 2px 16px 0 rgba(36,53,73,0.04);
}

/* STRUCTURED FLEX GRIDS (MANDATORY) */
.card-container, .feature-grid, .region-grid, .offers-list, .blog-post-previews, .destination-highlights, .blog-highlights, .blog-popular-topics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature-item, .region-item, .offer-card, .blog-preview-card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px 0 24px 0;
  box-shadow: 0 2px 16px 0 rgba(36,53,73,.07);
  padding: 30px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid #E6EAF0;
  min-width: 260px;
  flex: 1 1 290px;
  transition: border-color .2s, box-shadow .21s, transform .17s;
}
.card:hover, .feature-item:hover, .region-item:hover, .offer-card:hover, .blog-preview-card:hover {
  border-color: #40768C;
  box-shadow: 0 8px 36px 0 rgba(36,53,73,.12);
  transform: translateY(-5px) scale(1.025) skew(-1deg, -1deg);
  z-index: 2;
}
.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;
  padding: 20px;
  background: #F1EFEF;
  border-radius: 32px 0 32px 0;
  border: 2px solid #E6EAF0;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 rgba(36,53,73,0.06);
  transition: border-color .19s, box-shadow .19s;
}
.testimonial-card span {
  color: #243549;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card p {
  color: #243549;
  font-size: 1.11rem;
}
.testimonial-card .star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
/* Review contrast (CRITICAL) */
.testimonials, .testimonials-preview {
  background: #fff;
  color: #243549;
}
.testimonials-preview .testimonial-card,
.testimonials .testimonial-card {
  background: #fff;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-item img {
  height: 50px;
  width: 50px;
  margin-bottom: 12px;
}
.region-item {
  font-size: 1.09rem;
}
.region-grid, .feature-grid, .offers-list, .blog-post-previews {
  gap: 24px;
  margin-bottom: 16px;
}

.offer-card {
  background: #fff;
  position: relative;
  border-radius: 24px 0 24px 0;
  box-shadow: 0 2px 18px 0 rgba(36,53,73,0.08);
  border: 2px solid #E6EAF0;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 350px;
  gap: 10px;
}
.offer-badge {
  position: absolute;
  top: -16px;
  left: 16px;
  font-size: 0.95em;
  background: #40768C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 18px 18px 0;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(36,53,73,.09); 
}

.blog-preview-card {
  background: #fff;
  border-radius: 28px 0 28px 0;
  border: 2px solid #E6EAF0;
  box-shadow: 0 2px 18px 0 rgba(36,53,73,0.07);
  margin-bottom: 20px;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border .2s, box-shadow .2s, transform .17s;
}

.destination-highlights, .blog-highlights {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.destination-highlights li, .blog-highlights li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding-left: 20px;
  position: relative;
}
.destination-highlights li:before, .blog-highlights li:before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  height: 10px;
  width: 10px;
  background: #40768C;
  border-radius: 2px;
  transform: rotate(45deg);
}

/* OL, UL */
ul, ol {
  margin-bottom: 18px;
  padding-left: 26px;
}
li {
  margin-bottom: 4px;
}

/* FOOTER */
footer {
  background: #243549;
  color: #fff;
  width: 100%;
  padding: 0 0 0 0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 20px 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.footer-logo img {
  height: 36px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #FFD943;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  transition: color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: .98em;
  font-style: normal;
  color: #F1EFEF;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 6px;
  vertical-align: -3px;
}
.footer-social-newsletter {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 210px;
  max-width: 270px;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-bottom: 2px;
}
.footer-social a img {
  height: 28px;
  width: 28px;
  filter: grayscale(.3);
  transition: filter .17s;
}
.footer-social a:hover img {
  filter: none;
}
.newsletter-signup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.newsletter-signup label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFD943;
  font-size: 0.97em;
  font-weight: 500;
}
.newsletter-signup input[type=email] {
  padding: 9px 16px;
  border-radius: 7px;
  border: 1.8px solid #40768C;
  font-size: 1rem;
  width: 100%;
  max-width: 210px;
  margin-bottom: 6px;
}
.newsletter-signup button {
  background: #FFD943;
  color: #243549;
  border: none;
  border-radius: 7px;
  padding: 9px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .15s, color .16s;
}
.newsletter-signup button:hover, .newsletter-signup button:focus {
  background: #40768C;
  color: #FFD943;
}

/* CONTACT INFO CARDS ETC. */
.contact-details ul,
.info-box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details li, .info-box li {
  display: flex;
  align-items: center;
  font-size: 1.01rem;
  padding-left: 0;
}
.contact-details img, .info-box img {
  height: 22px;
  width: 22px;
  margin-right: 10px;
}
.office-map {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 24px 0;
}
.office-map img {
  height: 52px;
  width: 52px;
  border-radius: 16px 0 16px 0;
  border: 1.5px solid #40768C;
}
.info-box {
  background: #fff;
  border-radius: 14px 0 14px 0;
  border: 2px solid #E6EAF0;
  padding: 18px 14px 8px 14px;
  margin-top: 18px;
  margin-bottom: 8px;
  box-shadow: 0 2px 9px 0 rgba(36,53,73,0.09);
}

/* LEGAL SECTION */
.legal {
  background: #fff;
  border-radius: 40px 0 40px 0;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 16px 0 rgba(36,53,73,0.05);
  color: #243549;
}
.legal a {
  color: #40768C;
}
.legal a:hover, .legal a:focus {
  color: #243549;
}

/* BOOKING STEPS IN OFFERS */
.booking-steps {
  margin-bottom: 20px;
  padding-left: 30px;
  list-style: decimal inside;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #243549;
}

/* RESPONSIVE DESIGN (MOBILE FIRST) */
@media (max-width: 1100px) {
  .footer-main, .main-nav {
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
}
@media (max-width: 800px) {
  .container {
    padding-left: 13px; padding-right: 13px;
  }
  .card, .feature-item, .region-item, .offer-card, .blog-preview-card {
    min-width: 160px;
    font-size: 0.97rem;
    padding: 20px 12px 16px 13px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 32px 6px;
    margin-bottom: 36px;
    border-radius: 0 0 36px 0;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 8px 8px 8px;
  }
  .region-grid, .feature-grid, .offers-list, .blog-post-previews {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .testimonial-card, .feature-item, .offer-card, .region-item {
    padding: 15px 8px 12px 10px;
    min-width: 110px;
  }
  .section, .features, .about, .about-preview, .testimonials-preview, .destinations-preview, .blog-preview, .contact-cta, .contact-info, .testimonials, .blog-popular-topics, .legal, .about-support {
    margin-bottom: 36px;
    padding: 24px 6px;
    border-radius: 32px 0 32px 0;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.37rem; }
  .main-nav, .footer-main {
    padding-left: 6px;
    padding-right: 6px;
  }
  .section, .features, .about, .about-preview, .testimonials-preview, .destinations-preview, .blog-preview, .contact-cta, .contact-info, .testimonials, .blog-popular-topics, .legal, .about-support {
    padding: 14px 3px;
    margin-bottom: 17px;
    border-radius: 18px 0 18px 0;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .feature-item, .offer-card, .region-item, .blog-preview-card, .testimonial-card {
  transition: box-shadow .15s, border .18s, transform .16s;
}
.card:hover, .feature-item:hover, .offer-card:hover, .blog-preview-card:hover, .region-item:hover {
  box-shadow: 0 8px 36px 0 rgba(36,53,73,0.14);
  border-color: #40768C;
  transform: translateY(-5px) scale(1.02);
}
.cta-button, .cta-link, .footer-social a img, .main-nav a, .mobile-nav a {
  transition: background .15s, color .13s, border .15s, box-shadow .18s;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #243549;
  color: #F1EFEF;
  z-index: 200;
  padding: 22px 24px 12px 24px;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 14px 0 rgba(36,53,73,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  animation: cookie-slide-up 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookie-slide-up {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner strong {
  color: #FFD943;
}
.cookie-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  background: #40768C;
  color: #FFD943;
  border: none;
  border-radius: 8px 0 8px 0;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: .97em;
  letter-spacing: 0.04em;
  margin-right: 8px;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-accept{background: #FFD943; color:#243549;}
.cookie-settings{
  background: #fff;
  color: #40768C;
  border: 2.2px solid #40768C;
  margin-right: 0;
}
.cookie-accept:hover, .cookie-accept:focus { background: #243549; color:#FFD943; }
.cookie-reject:hover, .cookie-reject:focus { background: #FFD943; color: #243549; }
.cookie-settings:hover, .cookie-settings:focus { background:#40768C; color: #fff; }

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  color: #243549;
  border-radius: 22px 0 22px 0;
  min-width: 315px;
  max-width: 92vw;
  z-index: 300;
  box-shadow: 0 6px 44px 0 rgba(36,53,73,0.17);
  padding: 32px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-popup .6s cubic-bezier(.52,-0.39,.38,1.44);
}
@keyframes cookie-modal-popup {
  from { transform: translate(-50%, -55%) scale(0.86); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #40768C;
  font-size: 1.21rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  color: #243549;
  padding-left: 0;
}
.cookie-modal li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-toggle {
  accent-color: #40768C;
  width: 22px; height: 22px;
  margin-right: 10px;
  border-radius: 5px;
  border: 1.5px solid #40768C;
  cursor: pointer;
}
.cookie-toggle[disabled] {
  accent-color: #ccc;
  opacity: .56;
  cursor: default;
}
.cookie-modal-btn-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 2px;
}
.cookie-modal .modal-close-btn {
  background: #40768C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 8px 0 8px 0;
  font-size: 1rem;
  font-weight: bold;
  padding: 7px 19px;
  cursor: pointer;
  transition: background .17s, color .16s;
}
.cookie-modal .modal-close-btn:hover, .cookie-modal .modal-close-btn:focus {
  background: #FFD943;
  color: #243549;
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 12px 5px 6px 8px;
    font-size: .98rem;
    border-radius: 14px 14px 0 0;
  }
  .cookie-modal {
    padding: 16px 5px 12px 10px;
    font-size: 0.99rem;
    border-radius: 12px 0 12px 0;
    min-width: unset;
    max-width: 99vw;
  }
  .cookie-modal h2{margin-bottom:7px;}
}

/* MISCELLANEOUS GEOMETRIC ACCENTS & VISUALS */
.card, .feature-item, .region-item, .offer-card, .blog-preview-card, .testimonial-card, .info-box {
  border-radius: 24px 0 24px 0;
}
.hero, .footer-main, .cookie-modal, .cookie-banner, .mobile-menu {
  border-radius: 0 0 40px 0;
}

/* GEOMETRIC ANGULAR FONTS WHERE POSSIBLE */
.main-nav a, .mobile-nav a, .cta-button, .cta-link, .footer-nav a, .offer-badge, .testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.05em;
}

/* VISUAL HIERARCHY & SPACING CONSISTENCY */
h1, h2 {
  margin-bottom: 24px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 16px;
}

/* FLEX CONTAINER SPACING AND ALIGNMENT: CRITICAL */
.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.feature-grid, .region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
}

/* Hide mobile menu by default, show if open */
.mobile-menu {
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .23s, transform .3s;
}

/* ACCESSIBILITY: focus & contrast */
:focus {
  outline: 2.5px solid #FFD943;
  outline-offset: 2px;
}


