/* =====================================================
   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;
  background: #FFF8EF;
  color: #3b2621;
  /* subtle vintage paper look using off-white */
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* =====================================================
   CUSTOM VINTAGE FONTS
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #215D87;
  --color-secondary: #FAFAFA;
  --color-accent: #C98300;
  --color-bg: #FFF8EF;
  --color-card-bg: #FFF6E1;
  --color-dark: #3b2621;
  --color-dark-brown: #564032;
  --color-orange: #FFB400;
  --color-beige: #F8E3BA;
  --color-border: #DDC3A5;
  --color-shadow: rgba(33, 93, 135, 0.07);
  --vintage-red: #CB5048;
  --vintage-blue: #215D87;
  --vintage-yellow: #FFD68A;
  --vintage-green: #97B687;
  --vintage-bg1: #FFF8EF;
  --vintage-bg2: #FFFBF6;
  --vintage-bg3: #FAEAD6;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;

  --radius-large: 18px;
  --radius-med: 10px;
  --radius-sm: 6px;

  --shadow-card: 0 6px 32px 0 var(--color-shadow);
  --shadow-pop: 0 2px 24px 0 var(--color-shadow);
  --shadow-small: 0 2px 8px 0 rgba(0,0,0,0.07);
  --border-main: 2px solid var(--color-border);
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 680px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =====================================================
   TYPOGRAPHY & HEADINGS
   ===================================================== */
body, html {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--vintage-bg1);
  color: var(--color-dark);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--vintage-blue);
  margin-bottom: 12px;
  line-height: 1.13;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 0 #FFD68A50;
}
h1 {
  font-size: 2.75rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
  color: var(--color-dark-brown);
  letter-spacing: 1px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, li, label, input, textarea {
  font-family: var(--font-body);
  color: var(--color-dark);
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: var(--color-accent);
}
blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--vintage-red);
  font-size: 1.13rem;
  letter-spacing: 0.3px;
  background: var(--vintage-bg3);
  border-left: 6px solid var(--vintage-blue);
  border-radius: var(--radius-med);
  margin: 0 0 1rem 0;
  padding: 16px 22px 16px 20px;
  box-shadow: 0 1px 8px 0 rgba(44,33,20,0.025);
}

hr {
  border: 0;
  border-bottom: 1px solid var(--color-border);
  margin: 32px 0;
}

/* =====================================================
   NAVIGATION & HEADER
   ===================================================== */
header {
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 3px 24px -4px #C9830044;
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 0 24px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  font-family: var(--font-display);
  color: var(--color-dark-brown);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.7px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: #fff;
  outline: none;
}
.cta.primary {
  background: var(--color-accent);
  color: #fff !important;
  padding: 10px 30px;
  border-radius: var(--radius-med);
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 900;
  letter-spacing: 0.85px;
  box-shadow: 0 2px 12px #FFD68A30;
  margin-left: 14px;
  border: none;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  position: relative;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--vintage-red);
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 3px 24px #FFD68A45;
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-med);
  font-size: 2.3rem;
  padding: 3px 20px 1px 16px;
  margin-left: 10px;
  border: none;
  transition: background 0.15s, color 0.15s;
  z-index: 51;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vintage-red);
  color: #fff;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 10px;
    font-size: 0.98rem;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    align-items: center;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =====================================================
   MOBILE MENU OVERLAY
   ===================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--vintage-bg3);
  box-shadow: 2px 0 40px #C9830040;
  transform: translateX(-102%);
  transition: transform 0.32s cubic-bezier(.68,-0.31,.51,1.34);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--vintage-blue);
  background: transparent;
  border: none;
  padding: 12px 22px 6px 8px;
  align-self: flex-end;
  margin: 0 10px 4px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--vintage-red);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-dark-brown);
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 18px 32px 12px 30px;
  transition: background 0.15s, color 0.15s;
  line-height: 1.35;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 900px) {
  .mobile-menu {
    width: 100vw;
    min-width: 290px;
  }
}
@media (max-width:500px) {
  .mobile-menu {
    width: 100vw;
    min-width: unset;
  }
}

/* =====================================================
   HERO & CTA STYLES
   ===================================================== */
.hero {
  background: repeating-linear-gradient(-30deg, var(--vintage-bg1), var(--vintage-bg2) 80px, var(--vintage-bg1) 120px);
  min-height: 370px;
  border-bottom: var(--border-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}
.hero h1 {
  color: var(--vintage-blue);
  font-size: 2.25rem;
  text-shadow: 2px 2px 0 #FFD68A44;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.25rem;
  color: var(--color-dark-brown);
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-weight: 600;
}
.hero .cta.primary {
  margin-top: 10px;
}

.cta {
  margin-bottom: 0;
  background: var(--vintage-bg3);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-large);
  padding: 36px 0;
}
.cta .container {
  align-items: center;
}
.cta h2 {
  color: var(--vintage-blue);
  font-size: 2rem;
  margin-bottom: 16px;
}

/* Vintage-styled divider between sections */
.section-divider {
  width: 100%;
  border-bottom: 3px dotted var(--color-accent);
  margin: 40px 0 0 0;
}

/* =====================================================
   FEATURES & SERVICES
   ===================================================== */
.features, .services, .services-received, .topic-samples {
  background: var(--vintage-bg2);
  box-shadow: 0 1px 12px #f6daae22;
  border-radius: var(--radius-large);
  margin-bottom: 50px;
  padding: 40px 20px;
}
.features .content-wrapper, .services .content-wrapper {
  gap: 18px;
}
.features h2, .services h2, .services-received h2, .topic-samples h2 {
  color: var(--vintage-red);
  font-size: 1.65rem;
}
.features ul, .services ul, .services-received ul, .topic-samples ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  list-style: none;
}
.features ul li, .services ul li, .services-received ul li, .topic-samples ul li {
  font-size: 1.13rem;
  color: var(--color-dark-brown);
  font-family: var(--font-body);
  background: var(--vintage-bg3);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius-med);
  padding: 11px 17px 11px 21px;
  margin: 0;
  line-height: 1.5;
  box-shadow: 0 1px 5px #ccac6f0a;
  transition: box-shadow 0.17s;
}
.features ul li strong, .services ul li strong {
  color: var(--vintage-blue);
}
.features ul li:hover, .services ul li:hover {
  box-shadow: 0 4px 24px #DDC3A540;
}
.services ul {
  gap: 26px;
}
.services ul li {
  border-top: var(--border-main);
  border-bottom: var(--border-main);
  border-left: none;
  border-radius: var(--radius-med);
  background: #fff9ee;
  padding: 20px 18px;
  margin: 8px 0 0 0;
  transition: box-shadow 0.13s, border 0.13s;
}
.services ul li h3 {
  margin-bottom: 7px;
  color: var(--vintage-red);
  font-size: 1.11rem;
}
.services ul li p {
  color: var(--color-dark-brown);
  font-size: 1.01rem;
}

@media (max-width: 900px) {
  .features, .services, .services-received, .topic-samples {
    padding: 26px 10px;
  }
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  background: var(--vintage-bg2);
  border-radius: var(--radius-large);
  margin-bottom: 40px;
  padding: 40px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonials h2 {
  color: var(--vintage-red);
  font-size: 1.6rem;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--color-card-bg);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-med);
  padding: 20px; /* as required */
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  transition: border 0.18s, box-shadow 0.19s;
  font-family: var(--font-body);
  color: #332521;
  max-width: 620px;
}
.testimonial-card:hover {
  border-color: var(--vintage-red);
  box-shadow: 0 6px 36px #C9830015;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: 4px solid var(--vintage-blue);
  color: var(--vintage-red);
  font-size: 1.1rem;
  padding: 8px 0 8px 12px;
  margin: 0;
}
.testimonial-card p {
  margin: 0 0 4px 0;
  color: var(--color-dark-brown);
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 0.99rem;
}

/* CRITICAL: Ensure contrast is high for accessibility */
.testimonial-card,
.testimonial-card blockquote,
.testimonial-card p,
.testimonial-card strong {
  color: #302012;
  background: none;
}

/* =====================================================
   CARDS & FLEX LAYOUTS
   ===================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--vintage-bg2);
  border: var(--border-main);
  border-radius: var(--radius-med);
  padding: 28px 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: box-shadow 0.18s, border 0.15s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--vintage-red);
  box-shadow: 0 4px 32px #ffb40033;
}

.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: stretch;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  width: 100%;
  background: var(--vintage-blue);
  color: #fff;
  padding: 38px 0 32px 0;
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: 1rem;
  border-top: 4px solid var(--color-accent);
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
.footer-logo img {
  height: 34px;
  margin-bottom: 13px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #FFD68A;
  font-family: var(--font-display);
  font-size: 1.01rem;
  text-decoration: underline dotted;
  margin-bottom: 5px;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: var(--color-accent);
  text-decoration: underline solid;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #ffecc6;
}
.footer-contact p {
  color: #fff8d8;
  margin: 0 0 4px 0;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  opacity: 0.86;
  transition: opacity 0.17s;
}
.footer-social a:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 3px #FFD68A);
}

@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .footer-logo img {
    margin-bottom: 0;
  }
}

/* =====================================================
   FORMS & INPUTS (appearance for possible forms)
   ===================================================== */
input, textarea, select {
  background: var(--vintage-bg1);
  border: var(--border-main);
  border-radius: var(--radius-med);
  padding: 10px 14px;
  margin: 0 0 12px 0;
  font-size: 1rem;
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border 0.19s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(237, 174, 10, 0.06);
}
label {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-dark-brown);
  margin-bottom: 6px;
}

/* =====================================================
   RESPONSIVE (MOBILE-FIRST) ADJUSTMENTS
   ===================================================== */
@media (max-width: 700px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  .section, .features, .services, .testimonials, .services-received, .topic-samples, .cta {
    padding: 19px 2px;
    border-radius: var(--radius-med);
    margin-bottom: 34px;
  }
  .hero {
    min-height: 170px;
    padding-top: 18px;
    padding-bottom: 22px;
  }
  .footer-nav, .footer-contact {
    font-size: 0.99rem !important;
  }
}
@media (max-width: 410px) {
  .footer-contact, .footer-nav, .footer-logo {
    font-size: 0.95rem;
  }
  .card, .testimonial-card {
    padding: 12px 7px;
  }
}

/* =====================================================
   BUTTONS & INTERACTIONS
   ===================================================== */
button, .cta.primary, .modal-btn, .cookie-btn {
  user-select: none;
  transition: background 0.18s, color 0.15s, transform 0.12s, box-shadow 0.13s;
}
button:active, .cta.primary:active {
  transform: translateY(1px) scale(0.96);
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-med);
  margin-right: 13px;
  padding: 9px 22px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-small);
  text-decoration: none;
  transition: background 0.17s, color 0.13s, box-shadow 0.15s;
}
.cookie-btn:last-child {
  margin-right: 0;
}
.cookie-btn.settings {
  background: var(--vintage-blue);
  color: #fff8d8;
}
.cookie-btn.reject {
  background: var(--vintage-red);
  color: #fff7f4;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 0 8px #FFD68A44;
  background: var(--color-dark-brown);
  color: #fffacd;
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF6E1;
  color: var(--color-dark);
  box-shadow: 0 -6px 32px #c9830033;
  border-top: var(--border-main);
  padding: 20px 24px 20px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  font-size: 1rem;
  gap: 24px;
  animation: fadein-cc .46s cubic-bezier(.47,1.64,.41,.91);
}
@keyframes fadein-cc {
  from { opacity:0; transform: translateY(55px); }
  to { opacity:1; transform: translateY(0); }
}
.cookie-consent-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.01rem;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    font-size: 0.99rem;
    padding: 14px 7px 10px 7px;
  }
  .cookie-consent-actions {
    flex-wrap: wrap;
    gap: 7px;
  }
}

/* -----------------------------------------------------
   COOKIE CONSENT MODAL POPUP
   ----------------------------------------------------- */
.cookie-modal {
  position: fixed;
  z-index: 3000;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33,93,135,0.24);
  backdrop-filter: blur(2px);
  animation: fadein-modal 0.24s cubic-bezier(.54,-0.24,.45,1.08);
}
@keyframes fadein-modal {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-content {
  width: 97vw;
  max-width: 410px;
  background: var(--vintage-bg2);
  border-radius: var(--radius-large);
  padding: 27px 17px 24px 20px;
  box-shadow: 0 10px 36px #b1770040;
  color: var(--color-dark);
  border: var(--border-main);
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.23rem;
  color: var(--vintage-blue);
  margin-bottom: 10px;
}
.cookie-modal-category {
  font-size: 1.02rem;
  font-family: var(--font-body);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  padding: 8px 0 7px 0;
}
.cookie-modal-category .switch {
  margin-left: auto;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 19px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 14px;
  font-size: 1.7rem;
  background: transparent;
  color: var(--color-dark-brown);
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--vintage-red);
  outline: none;
}

/* Custom switch for toggles */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #FFD68A;
  border-radius: 13px;
  transition: background 0.23s;
}
.switch input:checked + .switch-slider {
  background-color: var(--color-accent);
}
.switch-slider:before {
  position: absolute;
  content: '';
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px #FFD68A22;
  transition: 0.21s;
}
.switch input:checked + .switch-slider:before {
  transform: translateX(18px);
}

/* =====================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ===================================================== */
.card, .testimonial-card, .services ul li, .cta.primary, .cookie-btn {
  will-change: transform, box-shadow;
}
.card, .testimonial-card, .services ul li {
  transition: box-shadow 0.19s, transform 0.13s, border-color 0.14s;
}
.card:hover, .testimonial-card:hover, .services ul li:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 9px 29px #FFD68A33;
}

/* =====================================================
   SOME MISCELLANEOUS CLASSES
   ===================================================== */
.about, .about-cert, .gdpr, .privacy-policy, .cookies-policy, .terms, .contact {
  background: var(--vintage-bg2);
  border-radius: var(--radius-large);
  padding: 40px 22px;
  box-shadow: 0 4px 32px #f6daae13;
  margin-bottom: 55px;
}
.contact-details p {
  margin: 0 0 8px 0;
  font-size: 1.06rem;
}

@media (max-width: 700px) {
  .about, .about-cert, .gdpr, .privacy-policy, .cookies-policy, .terms, .contact {
    padding: 18px 7px;
    border-radius: var(--radius-med);
    margin-bottom: 30px;
  }
}

/* ===============
   PRINT STYLE RESET
   =============== */
@media print {
  *, *:before, *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited { text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; }
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal { display: none !important; }
  body { background: #fff !important; }
}
