/* RESET & BASE TYPOGRAPHY ============================================ */
html {
  box-sizing: border-box;
  font-size: 16px;
  background-color: #F4F1EC;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #234E70;
  background-color: #F4F1EC;
  line-height: 1.65;
  min-height: 100vh;
  /* retro vignette tint */
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #234E70;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #FDB933;
  outline-offset: 2px;
}

/* VINTAGE RETRO COLOR PALETTE and BACKGROUND PATTERNS =================== */
:root {
  --primary: #234E70;
  --secondary: #E7ECEF;
  --accent: #FDB933;
  --retro-red: #B05D3B;
  --retro-tan: #F4F1EC;
  --retro-mint: #b4c8a6;
  --retro-dark: #28313a;
  --white: #fff;
  --vintage-border: #D3C6BA;
  --shadow: 0 3px 18px rgba(60,39,12,0.11);
}

body {
  background-color: var(--retro-tan);
  /* Subtle paper texture */
  background-image: repeating-linear-gradient(135deg, #eae1d4 0 2px, transparent 2px 20px), repeating-linear-gradient(225deg, #f0e3c7 0 2px, transparent 2px 20px);
}

.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 18px;
  margin: 0 auto;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255,255,255,0.78);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--vintage-border);
}

/* TYPOGRAPHY RETRO HIERARCHY ========================= */
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  color: var(--primary);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-shadow: 0 3px 16px rgba(36,27,3,0.05);
  margin-bottom: 22px;
}
h2 {
  font-size: 2rem;
  text-shadow: 0 2px 12px rgba(36,27,3,0.05);
}
h3 {
  font-size: 1.35rem;
  font-weight: bold;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, ul, ol {
  font-size: 1rem;
  color: #2d2d2d;
  margin-bottom: 18px;
}

ul, ol {
  padding-left: 1.4em;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.hero-section h1 {
  color: var(--retro-red);
  font-size: 2.7rem;
  font-family: 'Roboto Slab', serif;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-section p {
  font-size: 1.17rem;
  color: var(--primary);
  margin-bottom: 26px;
}

/* ============= FLEXBOX LAYOUT STRUCTURES ============== */
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 18px 10px 18px;
  background: #fff3db;
  border-bottom: 2px solid var(--vintage-border);
  position: relative;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  font-size: 1.07rem;
  padding: 7px 13px;
  letter-spacing: 0.04em;
  border-radius: 7px;
  color: var(--primary);
  transition: background 0.17s, color 0.17s;
}

.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent);
  color: var(--retro-dark);
  text-decoration: underline;
}

.primary-cta, .secondary-cta {
  display: inline-block;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  min-width: 188px;
  text-align: center;
  letter-spacing: 1px;
  padding: 13px 28px;
  background: var(--retro-mint);
  color: var(--primary);
  box-shadow: 0 2px 16px rgba(115,101,55,0.07);
  font-size: 1.11rem;
  margin-top: 8px;
  transition: background 0.21s, color 0.18s, transform 0.13s;
  cursor: pointer;
  margin-bottom: 12px;
  text-shadow: 0 2px 0px rgba(220,213,184,.08);
}

.primary-cta:hover, .primary-cta:focus {
  background: var(--accent);
  color: #234E70;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(253,185,51,0.15);
}
.secondary-cta {
  background: var(--retro-red);
  color: #fff;
}
.secondary-cta:hover,
.secondary-cta:focus {
  background: var(--primary);
  color: var(--accent);
}

/* =========== MOBILE BURGER MENU COMPONENT =============== */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--retro-dark);
  border: none;
  font-size: 2rem;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1202;
  box-shadow: 0 1px 8px rgba(36,27,3,0.07);
  position: absolute;
  right: 22px; top: 18px;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--retro-mint);
  color: var(--primary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #fff3db;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.44,0.06,0.3,1.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 62px;
  width: 100vw;
  min-height: 100vh;
  box-shadow: 2px 0 26px rgba(60,40,14,0.10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 6px 13px;
  cursor: pointer;
  z-index: 1205;
  transition: background 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--retro-mint);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  margin-top: 36px;
  padding-left: 36px;
}
.mobile-nav a {
  padding: 13px 10px;
  font-size: 1.21rem;
  font-weight: 600;
  font-family: 'Roboto Slab', serif;
  color: var(--primary);
  transition: color 0.16s, background 0.15s;
  width: 100%;
  border-radius: 5px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--retro-dark);
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============== HERO + MAIN SECTIONS ============== */
.hero-section {
  background: linear-gradient(92deg, #F0CB8E 11%, #e7ecef 97%);
  box-shadow: 0 9px 24px rgba(163,138,62,0.09);
  border-radius: 0 0 38px 38px;
  margin-bottom: 54px;
  padding-bottom: 42px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 0;
}

/* ========== Features Section, Card & List Styles ========== */
.features-section {
  background: #FFFAEE;
  box-shadow: 0 3px 18px rgba(60,39,12,0.04);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-item {
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(36,27,3,0.07);
  border: 1.5px solid var(--vintage-border);
  padding: 26px 23px 18px 23px;
  width: 100%;
  max-width: 258px;
  margin-bottom: 20px;
  min-height: 229px;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 5px;
  filter: sepia(0.27) contrast(1.04) brightness(1.07);
}
.feature-item h3 {
  font-size: 1.15rem;
  color: var(--retro-red);
}
.feature-item p {
  color: var(--primary);
  font-size: 1rem;
}

/* ============ About/Contact Sections and Info cards ========= */
.about-section, .contact-section, .legal-section, .thankyou-section {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px;
  border: 1.5px solid var(--vintage-border);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-badges {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  align-items: center;
}
.trust-badges img {
  width: 44px;
  height: 44px;
}
.contact-summary, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-summary ul, .contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-summary ul li, .contact-details ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #444;
}
.contact-summary ul img, .contact-details ul img {
  width: 23px;
  height: 23px;
  opacity: 0.92;
}
.contact-summary p img, .contact-details p img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  opacity: 0.92;
}
.cta-label {
  font-size: 1.04rem;
  font-style: italic;
  color: #A16E1C;
  margin: 20px 0 8px 0;
  letter-spacing: 0.01em;
}

/* ============= SERVICE CARDS, OVERVIEW, and QUICK-LINKS ============= */
.service-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0 24px 0;
}
.service-item {
  background: var(--retro-mint);
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(60,39,12,0.07);
  padding: 22px 18px;
  width: 100%;
  max-width: 314px;
  margin-bottom: 20px;
  border: 1.5px solid var(--vintage-border);
  transition: box-shadow 0.22s, background 0.19s;
  position: relative;
  min-height: 186px;
}
.service-item h3 {
  margin-bottom: 9px;
}
.service-item:hover,
.service-item:focus-within {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 8px 32px 0 rgba(253,185,51,0.08);
}

.service-categories ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 0;
}
.quick-links {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-top: 7px;
}
.quick-links a {
  background: var(--accent);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 8px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 13px;
  transition: background 0.15s, color 0.16s;
}
.quick-links a:hover,
.quick-links a:focus {
  background: var(--primary);
  color: var(--accent);
}

/* =============== TESTIMONIALS ================== */
.testimonials-section {
  background: #f8e3b8;
  border-radius: 24px;
  border: 2px dotted #ddb668;
  padding: 38px 0 32px 0;
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 27px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 24px 24px;
  border-radius: 16px;
  margin-bottom: 20px;
  background: #fff7ea;
  box-shadow: 0 7px 30px 0 rgba(60,41,13,0.10);
  border: 1.5px solid var(--vintage-border);
  min-width: 230px;
  max-width: 340px;
  transition: background 0.19s, border 0.2s, box-shadow 0.20s;
}
.testimonial-card p {
  color: #2a261f;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-name {
  font-family: 'Roboto Slab', serif;
  color: #997814;
  font-size: 1.1rem;
  font-weight: 700;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  background: #fdeabf;
  border-color: #FDB933;
  box-shadow: 0 11px 36px #fdb93322;
}

/* =============== FOOTER STYLES ============== */
footer {
  background: #234E70;
  color: #fff;
  padding-bottom: 18px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 18px 0 18px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: #fff7ea;
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.19s;
  text-decoration: underline 1px rgba(255,255,255,0.12);
  padding: 4px 10px;
  border-radius: 7px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  text-decoration: underline 2.5px #FDB933;
}
.footer-contact-short {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-contact-short span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: #f8e3b8;
}
.footer-contact-short img {
  width: 19px;
  height: 19px;
  filter: grayscale(0.8) brightness(1.13);
}
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-social-links a img {
  width: 31px;
  height: 31px;
  background: #fff7ea;
  border-radius: 6px;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(253,185,51,0.12);
  transition: background 0.13s, box-shadow 0.17s;
}
.footer-social-links a img:hover,
.footer-social-links a img:focus {
  background: #FDB933;
  box-shadow: 0 7px 20px #ffd18733;
}

/* ============== LEGAL, POLICY, TERMS, THANK YOU STYLES ============= */
.legal-section, .thankyou-section {
  background: #fffdfa;
  border: 1.5px solid #e5dfde;
}
.legal-section h1, .thankyou-section h1 {
  color: var(--retro-red);
  font-size: 2.35rem;
  margin-bottom: 16px;
}
.legal-section h2, .thankyou-section h2 {
  color: var(--primary);
  font-size: 1.42rem;
  margin-top: 19px;
}
.privacy-policy-content, .gdpr-content, .cookie-policy-content, .terms-conditions-content, .thank-you-message, .follow-up-information {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
}

/* ========== MANDATORY FLEXBOX COMPONENT CLASSES ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(60,39,12,0.07);
  padding: 19px 13px 21px 17px;
  border: 1.5px solid var(--vintage-border);
}
.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;
}

/* ================ RESPONSIVE BREAKPOINTS ============== */
@media (max-width: 900px) {
  .feature-grid, .service-overview-grid, .testimonial-slider, .content-grid, .footer-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .feature-item, .service-item {
    max-width: 100%;
    min-width: 220px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.21rem; }
  .section, section, .about-section, .contact-section, .legal-section, .thankyou-section {
    padding: 23px 7px;
    margin-bottom: 35px;
    border-radius: 13px;
  }
  .container {
    padding: 0 7px;
  }
  .header-wrapper, .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-left: 7px; padding-right: 7px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .contact-summary, .contact-details {
    gap: 11px;
  }
  .about-section, .contact-section {
    gap: 15px;
  }
  .hero-section .container {
    padding-top: 23px;
    padding-bottom: 12px;
  }
  .feature-grid, .service-overview-grid, .testimonial-slider, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-item, .testimonial-card {
    min-width: 160px;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 14px;
  }
  h1 { font-size: 1.29rem; }
  footer {
    padding-bottom: 8px;
  }
}

/* ================ COOKIE CONSENT COMPONENT ================= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1800;
  background: #fff7ea;
  border-top: 2.5px solid var(--accent);
  box-shadow: 0 -4px 32px 0 rgba(115,101,55,0.08);
  padding: 17px 18px 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  animation: fadein-cookie 0.34s;
  font-family: 'Open Sans', Arial, sans-serif;
}
@keyframes fadein-cookie {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-msg {
  color: #3c392c;
  font-size: 1rem;
  max-width: 480px;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 9px 20px;
  border-radius: 7px;
  border: none;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 3px;
  cursor: pointer;
  box-shadow: 0 2px 16px #e5be903c;
  transition: background 0.19s, color 0.16s, box-shadow 0.16s;
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--retro-dark);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--retro-red);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--retro-red);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--primary);
  color: #FDB933;
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--accent);
  color: var(--retro-dark);
}

@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 13px;
    padding: 18px 6px 17px 10px;
    align-items: flex-start;
  }
  .cookie-consent-banner .cookie-msg {
    max-width: 100%;
  }
}

/* COOKIE SETTINGS MODAL =============================== */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(36,30,5,0.28);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-cookie-modal 0.27s;
}
@keyframes fadein-cookie-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 17px;
  width: 95vw;
  max-width: 430px;
  padding: 33px 22px 26px 22px;
  box-shadow: 0 7px 48px #2b180333, 0 0px 1.5px #FDB933dd;
  border: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: pop-cookie-modal 0.30s;
  position: relative;
}
@keyframes pop-cookie-modal {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.23rem;
  color: var(--primary);
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-category-row label {
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Roboto Slab', serif;
}
.cookie-toggle {
  appearance: none;
  width: 46px;
  height: 24px;
  background: var(--secondary);
  border-radius: 13px;
  position: relative;
  outline: none;
  border: 1.7px solid var(--vintage-border);
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--accent);
  border-color: var(--primary);
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 2.5px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.22s;
}
.cookie-toggle:checked::before {
  transform: translateX(20px);
  background: var(--primary);
}
.cookie-category-row[data-essential] .cookie-toggle {
  opacity: 0.4;
  pointer-events: none;
}
.cookie-modal .cookie-modal-btns {
  margin-top: 11px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px; right: 16px;
  background: var(--accent);
  border-radius: 6px;
  border: none;
  font-size: 1.37rem;
  color: var(--primary);
  width: 32px; height: 32px;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: var(--primary);
  color: var(--accent);
}

/* ================ ANIMATION TRANSITIONS =============== */
button, .primary-cta, .secondary-cta, .cookie-btn, .cookie-modal-close {
  transition: background 0.18s, color 0.15s, box-shadow 0.15s, transform 0.13s;
}

.card, .feature-item, .service-item, .testimonial-card {
  transition: background 0.19s, box-shadow 0.15s, border 0.14s, transform 0.16s;
}
.card:hover, .feature-item:hover, .service-item:hover {
  box-shadow: 0 8px 22px #b05d3b1b, 0 1.5px 7px #D3C6BA;
  background: #fff3db;
  transform: translateY(-2.5px) scale(1.01);
}

/* =============== CLASSIC VINTAGE PATTERNS, DETAILS ============ */
h1, h2, h3, h4 {
  /* Decorative underline for old-school headline effect */
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 68px;
  height: 4px;
  border-radius: 2px;
  margin-top: 9px;
  background: var(--accent);
  opacity: 0.3;
  box-shadow: 0 1px 3px rgba(253,185,51,0.09);
}

/* Retro border for some content blocks */
.text-section, .team-skills-highlight, .certifications-list, .workshop-equipment-list, .service-process-overview, .parking-info, .public-transport-access,
.follow-up-information {
  border-left: 4px dotted var(--retro-red);
  padding-left: 18px;
  background: #f7f5ef;
  border-radius: 8px;
}

/* ============== COLORS for ACCENT & RETRO MOODS ============== */
::-webkit-selection {
  background: var(--accent);
  color: var(--primary);
}
::selection {
  background: var(--accent);
  color: var(--primary);
}

/* Hide visually if accessibility required */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* Misc: Remove blue tap highlight on iOS */
* {
  -webkit-tap-highlight-color: rgba(253,185,51,0.09);
}
