/* ---------- 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, 
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #232232;
  background: #FFF;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  margin: 0;
  padding: 0;
}
button { cursor: pointer; }

/* Font face if custom is required */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --color-primary: #2C2D70;
  --color-secondary: #0D9673;
  --color-accent: #F4EDE5;
  --color-black: #232232;
  --color-white: #fff;
  --color-gold: #CFB67A;
  --color-grey: #edeaea;
  --radius: 16px;
  --shadow: 0 6px 28px 0 rgba(44,45,112,0.08), 0 2px 8px 0 rgba(44,45,112,0.04);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ---------- BASIC LUXURY PREMIUM TYPOGRAPHY ---------- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  line-height: 1.14;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 14px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
}
p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-black);
  line-height: 1.7;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* Premium Letter Case for Buttons & CTAs */
.cta-primary,
button,
input[type="submit"] {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

/* ---------- CONTAINER, SPACING & LAYOUT PATTERNS ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features,
.values,
.benefits,
.about,
.process,
.stats,
.contact-cta,
.newsletter-cta,
.services-preview,
.faq {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Cards & Card-Container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  border: 1.2px solid var(--color-gold);
  transition: box-shadow 0.2s, border 0.2s;
}
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(44,45,112,0.15);
  border-color: var(--color-secondary);
}
.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;
  background: var(--color-accent);
  border-left: 4px solid var(--color-gold);
  padding: 20px 28px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.testimonial-card blockquote {
  color: var(--color-black);
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.5;
}
.testimonial-card .client-name {
  color: var(--color-secondary);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
}

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

/* Other Frequently Used Layouts */
.feature-grid,
.service-list,
.team-list,
.value-list,
.stat-list,
.benefit-list,
.blog-teasers,
.faq-accordion,
.case-study-list,
.service-item-list,
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid li,
.service-list > div, 
.team-list li, .value-list li, .stat-list li, .benefit-list li, .blog-teasers li, .faq-accordion > div,
.case-study-list > div,
.service-item-list > li,
.testimonial-list > div {
  min-width: 240px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  border: 1px solid #e9e0ce;
  flex: 1 1 250px;
  transition: box-shadow 0.2s, border 0.2s;
  margin-bottom: 0;
}
.feature-grid li img,
.value-list li img,
.benefit-list li img,
.service-list > div img,
.team-list li img,
.stat-list li img {
  max-width: 44px;
  margin-bottom: 12px;
}

.feature-grid li:hover,
.service-list > div:hover,
.team-list li:hover,
.case-study-list > div:hover,
.service-item-list > li:hover {
  box-shadow: 0 8px 32px rgba(44,45,112,0.11);
  border-color: var(--color-gold);
}

@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  .content-wrapper { max-width: 98vw; }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .service-list, .team-list, .value-list, .stat-list, .benefit-list, .blog-teasers, .faq-accordion, .case-study-list, .service-item-list {
    flex-direction: column;
    gap: 18px;
  }
  .card-container { flex-direction: column; gap: 16px; }
  .section, .features, .about, .services-preview, .process, .values, .stats, .contact-cta, .newsletter-cta, .faq, .benefits {
    padding: 32px 8px;
  }
  .hero h1, h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .testimonial-card { flex-direction: column; gap: 12px; padding: 18px; }
  .text-image-section { flex-direction: column; gap: 14px; }
}
@media (max-width: 480px) {
  .container, .content-wrapper {
    padding-left: 6px;
    padding-right: 6px;
  }
  .card, .feature-grid li, .service-list > div {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ----------------- HEADER & NAVIGATION ----------------- */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 1px 16px rgba(44,45,112, 0.04);
  z-index: 98;
  padding-top: 0.5rem; padding-bottom: 0.5rem;
  position: sticky;
  top: 0; /* sticky nav */
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 7px; padding-bottom: 7px;
  gap: 24px;
}
.brand-logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 7px rgba(44,45,112,0.12));
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 9px 0px;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}

.cta-primary {
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(207,182,122,0.05);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(13,150,115,0.14);
}

/* Mobile menu hamburger */
.mobile-menu-toggle {
  display: none;
  background: var(--color-gold);
  color: var(--color-primary);
  font-size: 2.1rem;
  padding: 10px 18px 6px 18px;
  border-radius: 48px;
  border: none;
  margin-left: 20px;
  transition: background 0.15s, color 0.15s;
  z-index: 101;
  min-width: 48px; min-height: 48px;
}
.mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .cta-primary { margin-left: 0; margin-right: 4px; }
}

/* Mobile menu overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;
  background: var(--color-white);
  box-shadow: 0 8px 32px rgba(44,45,112,0.13);
  z-index: 120;
  transform: translateX(-110vw);
  transition: transform 0.37s cubic-bezier(.86,-0.22,.75,1.32);
  padding: 30px 28px 0 30px;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: transparent;
  color: var(--color-primary);
  border: none;
  margin-bottom: 12px;
  margin-right: 8px;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 14px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--color-primary);
  padding: 12px 0;
  border-bottom: 1px solid #edeaea;
  width: 100%;
  transition: color 0.2s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  background: var(--color-accent);
}
@media (min-width:1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ----------------- HERO & SECTIONS ----------------- */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-accent);
  padding-top: 64px;
  padding-bottom: 64px;
  min-height: 340px;
  border-bottom: 2px solid var(--color-gold);
}
.hero .container, .hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
  text-align: center;
  font-family: var(--font-display);
  margin-bottom: 18px;
}
.hero p {
  color: var(--color-black);
  max-width: 600px;
  text-align: center;
  font-size: 1.15rem;
}
.hero .cta-primary {
  margin-top: 24px;
}

@media (max-width:768px) {
  .hero { padding: 40px 0 36px 0; }
  .hero h1 { font-size: 1.5rem; }
}

/* ----- Team & Value/Stat/FAQ/Cases/Features etc. ---------*/
.team-list, .case-study-list, .faq-accordion, .value-list, .stat-list, .benefit-list, .service-item-list {
  gap: 22px;
  padding-left: 0;
}
.team-list li, .value-list li, .stat-list li, .benefit-list li, .service-item-list > li, .case-study-list > div, .faq-accordion > div {
  background: var(--color-white);
  padding: 24px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-accent);
  font-size: 1.02rem;
  margin-bottom: 0;
}
.faq-accordion > div h3 {
  cursor: pointer;
  font-size: 1.11rem;
  transition: color 0.18s;
}
.faq-accordion > div h3:hover {
  color: var(--color-gold);
}

/* FAQ reveal (optionally for js) */
.faq-accordion > div.open p {
  display: block;
  animation: fadeInFaq 0.18s;
}
.faq-accordion > div p {
  display: none;
  margin-top: 8px;
}
@keyframes fadeInFaq {
  from { opacity:0; transform:translateY(-6px); }
  to { opacity:1; transform:none; }
}

/* -------- TESTIMONIALS --------- */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  background: var(--color-accent);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 22px 28px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  align-items: flex-start;
  min-width: 270px;
  max-width: 420px;
}
.testimonial-card blockquote {
  color: var(--color-black);
  font-style: italic;
  font-family: var(--font-body);
  font-size: 1.13rem;
  margin-bottom: 10px;
}
.testimonial-card .client-name {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.01rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card { min-width: 0; }
}

/* --------- FOOTER --------- */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 48px 0 0 0;
  position: relative; z-index: 2;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-white);
}
.footer-contact p {
  color: var(--color-accent);
  font-size: 0.98rem;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 4px;
  filter: grayscale(37%);
  vertical-align: baseline;
}
.footer-bottom {
  border-top: 1px solid rgba(244,237,229,0.15);
  padding: 13px 0 13px 0;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 0.97rem;
  text-align: center;
  opacity: 0.84;
}
footer img[alt="Opal Adventure"],
footer .content-wrapper > img {
  height: 47px;
  width: auto;
  margin-bottom: 8px;
  filter: brightness(95%) drop-shadow(0 2px 7px rgba(44,45,112,0.11));
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* ---------- LEGAL PAGES ---------- */
.legal h1, .legal h2 {
  color: var(--color-primary);
  font-family: var(--font-display);
}
.legal section, .legal .content-wrapper {
  border-radius: var(--radius);
  background: var(--color-accent);
  border: 1px solid var(--color-gold);
  margin-bottom: 28px;
  padding: 38px 32px;
  box-shadow: var(--shadow);
}
.legal ul {
  padding-left: 26px;
}
.legal ul li { list-style: disc; margin-bottom: 10px; }
.legal a {
  color: var(--color-secondary);
  text-decoration: underline;
}
.legal a:hover { color: var(--color-gold); }

/* ---------- BUTTONS ---------- */
button,
input[type=submit],
input[type=button] {
  background: var(--color-gold);
  color: var(--color-primary);
  border-radius: 24px;
  border: none;
  padding: 12px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.07rem;
  box-shadow: 0 1px 8px rgba(207,182,122,0.05);
  text-transform: uppercase;
  letter-spacing: 0.045em;
  transition: background 0.16s, color 0.15s, box-shadow 0.2s;
  margin-right: 12px;
}
button:hover, input[type=submit]:hover, input[type=button]:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 6px 22px rgba(13,150,115,0.13);
}

/* ---------- MODALS & OVERLAYS FOR COOKIES ---------- */
.cookie-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--color-primary);
  color: var(--color-accent);
  z-index: 250;
  padding: 24px 22px 22px 22px;
  font-family: var(--font-body);
  font-size: 1.09rem;
  box-shadow: 0 -8px 22px rgba(44,45,112,0.07);
  animation: slideUpCookie 0.5s ease;
}
@keyframes slideUpCookie {
  from {transform:translateY(90px);opacity:0;}
  to {transform:none;opacity:1;}
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-banner button {
  background: var(--color-gold);
  color: var(--color-primary);
  border-radius: 24px;
  font-size: 0.96rem;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  transition: background 0.14s, color 0.13s, box-shadow .18s;
  border: none;
}
.cookie-banner button:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cookie-banner .cookie-settings-btn {
  background: transparent; color: var(--color-gold); border:1px solid var(--color-gold);
}
.cookie-banner .cookie-settings-btn:hover { background: var(--color-gold); color: var(--color-primary); }

@media (max-width: 600px) {
  .cookie-banner { flex-direction:column; align-items:stretch; gap:11px; font-size:0.97rem; padding: 14px 7px; }
  .cookie-banner .cookie-buttons {flex-direction: column; gap: 6px;}
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(44, 45, 112, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.27s;
}
@keyframes fadeInCookieModal { from{opacity:0;} to{opacity:1;} }
.cookie-modal {
  background: var(--color-white);
  border-radius: var(--radius);
  width: 94vw;
  max-width: 410px;
  padding: 32px 30px 28px 30px;
  box-shadow: 0 12px 56px rgba(44,45,112, 0.13);
  border: 1.5px solid var(--color-gold);
  font-family: var(--font-body);
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 310;
}
.cookie-modal h2 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-accent);
}
.cookie-category:last-child { border: none; }
.cookie-category label {
  font-size: 1.04rem;
  color: var(--color-primary);
}
.cookie-toggle {
  width: 46px;
  height: 24px;
  background: var(--color-grey);
  border-radius: 13px;
  position: relative;
  transition: background 0.18s;
}
.cookie-toggle input[type=checkbox] {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: var(--color-gold);
  border-radius: 50%;
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle input[type=checkbox]:checked + .slider {
  left: 24px;
  background: var(--color-secondary);
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-size: 1rem;
  padding: 9px 22px;
}
.cookie-modal .close-cookie-modal {
  background: transparent; color: var(--color-primary); border: 1px solid var(--color-gold);
}
.cookie-modal .close-cookie-modal:hover { background: var(--color-gold); color: var(--color-primary); }

@media (max-width: 480px) {
  .cookie-modal { padding: 16px 6px 18px 12px; }
}

/* ---- MICROINTERACTIONS ---- */
.card, .testimonial-card, .feature-grid li, .service-list > div, .faq-accordion > div, .case-study-list > div {
  transition: box-shadow 0.18s, border 0.15s, transform .18s;
}
.card:hover, .feature-grid li:hover, .service-list > div:hover, .case-study-list > div:hover, .faq-accordion > div.open {
  transform: translateY(-3px) scale(1.016);
  box-shadow: 0 12px 44px rgba(44,45,112,0.13);
  border-color: var(--color-gold);
}
.cta-primary, button {
  transition: background 0.22s, color 0.15s, box-shadow 0.19s, transform 0.17s;
}
.cta-primary:active, button:active {
  transform: scale(0.97);
}

/* ---------- UTILITY CLASSES & ADJUSTMENTS ---------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }
.w-100 { width: 100% !important; }

/* ---------- CUSTOM SPACING TO ENSURE NO COLLISIONS ---------- */
.section > *, .section .container > *, .section .content-wrapper > * {
  margin-bottom: 28px;
}
.section > *:last-child, .section .container > *:last-child, .section .content-wrapper > *:last-child {
  margin-bottom: 0 !important;
}

/* For spacing between all cards/items */
.card:not(:last-child),
.feature-grid li:not(:last-child),
.service-list > div:not(:last-child),
.team-list li:not(:last-child),
.value-list li:not(:last-child),
.stat-list li:not(:last-child),
.benefit-list li:not(:last-child),
.blog-teasers li:not(:last-child),
.case-study-list > div:not(:last-child),
.service-item-list > li:not(:last-child) {
  margin-right: 20px;
}
@media (max-width:768px) {
  .card:not(:last-child),
  .feature-grid li:not(:last-child),
  .service-list > div:not(:last-child),
  .team-list li:not(:last-child),
  .value-list li:not(:last-child),
  .stat-list li:not(:last-child),
  .benefit-list li:not(:last-child),
  .blog-teasers li:not(:last-child),
  .case-study-list > div:not(:last-child),
  .service-item-list > li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* Ensure no component overlap */
main > section, .section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

/* FORM & INPUTS (for kontakt page) */
.contact-form-info ul li {
  display: block;
  padding: 11px 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--color-primary);
}
.contact-form-info p {
  margin-top: 16px;
  color: var(--color-black);
  font-size: 0.99rem;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}
.contact-info img {
  width: 20px;
  height: 20px;
}

/* THANK YOU PAGE */
.thank-you-message .container, .thank-you-message .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thank-you-message h1 {
  margin-bottom: 22px;
  color: var(--color-primary);
}
.thank-you-message p {
  color: var(--color-black);
  text-align: center;
  margin-bottom: 16px;
}
.thank-you-message ul {
  margin-bottom: 18px;
  text-align: left;
  color: var(--color-black);
}

/* --------- BLOG TEASER ---------- */
.blog-teasers li {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 20px 22px;
  min-width: 230px;
  box-shadow: var(--shadow);
  border: 1px solid #eee5d8;
}

/* ----------- END ----------- */
