/* ===== 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F7FA;
  color: #1B2733;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ===== BRAND TYPOGRAPHY ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
html {
  font-size: 16px;
}
body {
  font-family: "Roboto", Arial, sans-serif;
  background: #f5f7fa;
  font-size: 1rem;
  color: #1B2733;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #184A73;
}
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.3; margin-bottom: 16px; }
h3 { font-size: 1.375rem; line-height: 1.4; margin-bottom: 8px; }
h4 { font-size: 1.125rem; }
p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #263545;
}

/* ===== COLORS ===== */
:root {
  --ff-primary: #184A73;
  --ff-secondary: #FFF6F1;
  --ff-bg: #F5F7FA;
  --ff-accent: #C25806;
  --ff-accent-light: #E68949;
  --ff-gray: #E5E9F2;
  --ff-border: #D7DCE5;
  --ff-card-bg: #FFFFFF;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 10px;
  }
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--ff-card-bg);
  border-bottom: 1px solid var(--ff-border);
  padding: 0 0 0 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
header > a {
  margin-left: 32px;
  margin-right: 32px;
  display: flex;
  align-items: center;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  flex: 1 1 0%;
}
header nav a {
  font-family: "Montserrat", Arial, sans-serif;
  color: #184A73;
  padding: 8px 0;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
}
header nav a:hover,
header nav a:focus {
  color: var(--ff-accent);
  border-bottom: 2px solid var(--ff-accent-light);
}
header .mobile-menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  header > a { margin-left: 10px; margin-right: 10px; }
  header nav { gap: 18px; }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: flex;
    align-items: center;
    background: none;
    font-size: 2rem;
    margin-right: 24px;
    border-radius: 4px;
    color: var(--ff-primary);
    cursor: pointer;
    transition: background 0.2s;
    padding: 6px 12px;
    z-index: 120;
  }
  header .mobile-menu-toggle:focus {
    background: var(--ff-gray);
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,74,115,0.96);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.8,.25,.27,1);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #FFF;
  font-size: 2.25rem;
  border: none;
  align-self: flex-end;
  margin: 24px 32px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--ff-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  align-items: center;
  margin-top: 32px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.375rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  width: 90%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: var(--ff-accent-light);
  background: rgba(255,255,255,0.09);
}

@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 900px) {
  .mobile-menu, .mobile-menu.active {
    display: none !important;
  }
}

/* ===== HERO SECTIONS ===== */
.hero {
  background: linear-gradient(93deg, #184A73 73%, #e5e9f2 130%);
  color: #FFF;
  border-radius: 0 0 40px 40px;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
  gap: 20px;
  padding: 48px 0 40px 0;
}
.hero h1 {
  color: #FFF;
  font-size: 2.5rem;
}
.hero p {
  color: #F5F7FA;
}

@media (max-width: 768px) {
  .hero {
    padding: 0 0 0 0;
    border-radius: 0 0 24px 24px;
  }
  .hero .content-wrapper {
    padding: 30px 0 30px 0;
    align-items: flex-start;
  }
}

/* ===== CTA BUTTONS ===== */
.cta {
  appearance: none;
  display: inline-block;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1.125rem;
  padding: 14px 38px;
  margin: 10px 16px 0 0;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.19s;
  box-shadow: 0 1px 7px 0 rgba(24,74,115,0.06);
  text-align: center;
  text-decoration: none;
}
.cta.primary {
  background: var(--ff-accent);
  color: #FFF;
  box-shadow: 0 2px 12px 0 rgba(193,88,6,0.12);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--ff-accent-light);
  color: #FFF;
  box-shadow: 0 4px 18px 0 rgba(193,88,6,0.19);
}
.cta.secondary {
  background: #FFF;
  color: var(--ff-primary);
  border: 2px solid var(--ff-primary);
  margin: 10px 0 0 0;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--ff-gray);
  color: var(--ff-accent);
  border-color: var(--ff-accent);
}
@media (max-width: 600px) {
  .cta {
    width: 100%;
    margin-right: 0;
    margin-top: 16px;
    font-size: 1rem;
    padding: 14px 0;
  }
}

/* ===== FEATURES GRID ===== */
.features, .feature-grid, .feature-icons, .offer-grid, .gift-ideas-grid {
  width: 100%;
}
.features .feature-grid,
.features .feature-icons,
.offer-grid,
.gift-ideas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.feature-item {
  background: var(--ff-card-bg);
  border-radius: 19px;
  box-shadow: 0 2px 14px 0 rgba(24,74,115,0.06);
  border: 1px solid var(--ff-border);
  padding: 30px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  max-width: 350px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.19s;
}
.feature-item img {
  margin-bottom: 8px;
  width: 50px;
  height: 50px;
}
.feature-item h3 {
  font-size: 1.215rem;
  color: var(--ff-primary);
}
.feature-item:hover {
  box-shadow: 0 7px 24px 0 rgba(24,74,115,0.18);
  transform: translateY(-5px) scale(1.015);
  border-color: var(--ff-accent-light);
}
.limited-badge {
  background: var(--ff-accent-light);
  color: #FFF;
  font-size: 0.98rem;
  font-family: "Montserrat", Arial, sans-serif;
  border-radius: 16px;
  padding: 4px 14px;
  margin: 4px 0 0 0;
  display: inline-block;
  font-weight: 600;
}
.discount-tag {
  font-size: 0.9rem;
  color: var(--ff-accent);
  background: #FFF6EF;
  border-radius: 10px;
  padding: 4px 11px;
  font-family: "Montserrat", Arial, sans-serif;
}

@media (max-width: 1024px) {
  .feature-item {
    flex: 1 1 100%;
    min-width: 170px;
  }
  .features .feature-grid,
  .offer-grid,
  .gift-ideas-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .feature-item {
    flex: 1 1 90%;
    max-width: 100%;
    min-width: 0;
  }
  .features .feature-grid,
  .offer-grid,
  .gift-ideas-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* ===== CARD & TESTIMONIAL ALIGNMENTS ===== */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 32px;
  background: #FFF;
  border-radius: 19px;
  box-shadow: 0 2px 12px 0 rgba(24,74,115,0.05);
  border: 1px solid var(--ff-border);
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border 0.19s;
  width: 100%;
  max-width: 520px;
}
.testimonials .testimonial-card:hover {
  box-shadow: 0 4px 20px 0 rgba(24,74,115,0.14);
  border: 1.7px solid var(--ff-accent-light);
}
.star-rating {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4C542;
  font-size: 1.2rem;
}
.testimonials .testimonial-card p {
  color: #162336;
  font-size: 1.12rem;
  line-height: 1.65;
}
.testimonials .testimonial-card span {
  color: #184A73;
  opacity: 0.8;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 768px) {
  .testimonials .testimonial-card {
    padding: 18px 14px;
    max-width: 100%;
  }
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
  }
}

/* ===== ABOUT & TIMELINE ===== */
.about .text-section,
section .text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: none;
}
.timeline ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding-left: 0;
}
.timeline ul li {
  font-family: "Montserrat", Arial, sans-serif;
  color: #374E5A;
  font-size: 1rem;
  padding-left: 0;
}

/* ===== LISTS ===== */
ul, ol {
  margin-left: 20px;
  margin-bottom: 8px;
}
ul li, ol li {
  list-style: disc inside;
  margin-bottom: 6px;
}
.policy-text ul {
  margin-left: 10px;
}
.policy-text ul li {
  color: #263545;
  margin-bottom: 7px;
}

/* ===== TABLES ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  margin-bottom: 24px;
  background: #FFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 7px 0 rgba(24,74,115,0.07);
}
th, td {
  padding: 12px;
  border-bottom: 1px solid var(--ff-border);
  text-align: left;
}
th {
  background: var(--ff-gray);
  color: var(--ff-primary);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
}
tr:last-child td {
  border-bottom: none;
}

/* ===== MEMBERSHIP FAQ ===== */
.faq-dropdown {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.faq-dropdown li {
  background: #F7FAFE;
  border-radius: 13px;
  padding: 9px 18px 9px 18px;
  font-weight: 500;
  color: #1B2733;
  box-shadow: 0 2px 8px 0 rgba(24,74,115,0.04);
  position: relative;
}
.faq-dropdown li strong {
  color: var(--ff-primary);
  display: block;
  margin-bottom: 2px;
}
.faq-dropdown li p {
  font-weight: 400;
  color: #333f50;
  margin-top: 4px;
}

/* ===== SERVICES ===== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
}
.service-item {
  background: #FFF;
  border: 1px solid var(--ff-border);
  border-radius: 17px;
  box-shadow: 0 2px 7px 0 rgba(24,74,115,0.06);
  padding: 30px 19px 20px 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 260px;
  min-width: 200px;
  max-width: 315px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.17s;
}
.service-item:hover {
  box-shadow: 0 5px 22px 0 rgba(24,74,115,0.14);
  border-color: var(--ff-accent-light);
}
.service-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
}
.service-item h3 {
  color: var(--ff-primary);
  font-size: 1.13rem;
}
.price {
  background: #F7DAB0;
  color: var(--ff-accent);
  font-weight: 600;
  font-size: 1rem;
  font-family: "Montserrat", Arial, sans-serif;
  border-radius: 11px;
  padding: 6px 13px;
}
@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    gap: 18px;
  }
  .service-item {
    min-width: unset;
    max-width: 100%;
  }
}

/* ===== PACKAGING SERVICES & TIPS ===== */
.category-filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 10px 0 0 0;
}
.category-filter li {
  border: 1px solid var(--ff-accent-light);
  color: var(--ff-accent);
  background: #FFF6F1;
  border-radius: 14px;
  padding: 6px 13px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.gift-tips {
  margin-top: 18px;
  background: #KE3F3F4;
  padding: 16px 16px;
  background: #F7FAFE;
  border-radius: 13px;
  box-shadow: 0 1px 6px 0 rgba(24,74,115,0.03);
  color: #184A73;
}
.packaging-service, .shipping-info {
  padding: 0 0 10px 0;
  color: #3e5267;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: #F7FAFE;
  border-radius: 11px;
  padding: 18px 16px;
  margin-top: 16px;
}
.how-it-works h3 {
  margin-bottom: 7px;
  color: var(--ff-primary);
}
.how-it-works ul {
  margin-left: 12px;
}

/* ===== LEGAL & POLICY TEXT ===== */
.legal .policy-text {
  background: #FFF;
  border-radius: 14px;
  padding: 24px 26px 20px 26px;
  box-shadow: 0 2px 10px 0 rgba(24,74,115,0.04);
  color: #183354;
}
.legal .policy-text h2 {
  font-size: 1.225rem;
  margin: 16px 0 9px;
  color: var(--ff-accent);
}

/* ===== CONTACT DETAILS ===== */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #263545;
}
.map-embed {
  margin-top: 18px;
  background: #F7FAFE;
  padding: 16px 16px;
  border-radius: 13px;
  color: #184A73;
}

/* ===== FOOTER ===== */
footer {
  background: #1c2531;
  color: #FFF;
  padding: 0;
  font-size: 1rem;
  width: 100%;
}
footer .container {
  padding: 0 20px 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px 0 22px 0;
}
footer a {
  color: #FFF6F1;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 12px;
  opacity: 0.92;
  transition: color 0.2s, opacity 0.2s;
}
footer a:hover {
  color: var(--ff-accent-light);
  opacity: 1;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 130px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
  margin-top: 8px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #E5E9F2;
  font-size: 0.95rem;
  max-width: 250px;
  min-width: 162px;
  line-height: 1.7;
}
.footer-contact img {
  width: 15px;
  height: 15px;
  margin-right: 6px;
  vertical-align: middle;
}
.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 260px;
  min-width: 140px;
}
.newsletter-signup h3 {
  color: #FFF;
  font-size: 1.09rem;
}
.newsletter-signup p {
  color: #E5E9F2;
  font-size: 0.99rem;
}
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}
.social-icons img {
  width: 27px;
  height: 27px;
  opacity: 0.90;
  transition: opacity 0.15s;
  cursor: pointer;
}
.social-icons img:hover {
  opacity: 1;
}
@media (max-width: 1100px) {
  footer .content-wrapper {
    gap: 24px;
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
  }
  .social-icons {
    margin-bottom: 7px;
  }
}
@media (max-width: 600px) {
  footer .container {
    padding: 0 7px 0 7px;
  }
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #184A73;
  color: #FFF;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 26px 20px 23px;
  box-shadow: 0 -4px 24px rgba(24,74,115,0.07);
  border-radius: 18px 18px 0 0;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.3s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 440px;
}
.cookie-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 24px;
  margin: 0;
  border-radius: 22px;
  background: #FFF6F1;
  color: #184A73;
  border: 1px solid #E68949;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.17s, border 0.17s;
}
.cookie-btn.accept {
  background: var(--ff-accent);
  color: #FFF;
  border-color: var(--ff-accent);
}
.cookie-btn.reject {
  background: #FFF;
  color: var(--ff-primary);
  border-color: var(--ff-primary);
}
.cookie-btn.settings {
  background: var(--ff-secondary);
  color: var(--ff-accent);
  border-color: var(--ff-accent-light);
}
.cookie-btn.accept:hover {
  background: var(--ff-accent-light);
  color: #FFF;
}
.cookie-btn.reject:hover,
.cookie-btn.settings:hover {
  background: #F7FAFE;
  color: var(--ff-accent);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 12px 8px 14px 10px;
    font-size: 0.97rem;
  }
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 100000;
  background: rgba(24,74,115,0.88);
  align-items: center;
  justify-content: center;
  transition: background 0.29s;
  animation: fade-in 0.2s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #FFF;
  color: #184A73;
  max-width: 390px;
  width: 95vw;
  border-radius: 19px;
  padding: 30px 24px 24px 24px;
  box-shadow: 0 7px 44px 0 rgba(24,74,115,0.22);
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-slideIn 0.25s;
}
@keyframes modal-slideIn {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.14rem;
  color: var(--ff-accent);
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 0;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-switch {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.cookie-switch input[type="checkbox"] {
  width: 40px; height: 22px;
  accent-color: var(--ff-accent);
  border-radius: 11px;
  margin: 0 0 0 8px;
}
.cookie-switch label {
  margin-left: 10px;
  color: #184A73;
  font-size: 1rem;
}
.essential {
  color: #296dac;
}
.cookie-modal-bottom {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal .cookie-btn {
  min-width: 105px;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 22px 6px 18px 7px;
    width: 97vw;
  }
}

/* ===== ANIMATIONS & MICRO-INTERACTIONS ===== */
@keyframes fade-in {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* ===== MISC ===== */
.award-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 8px 0;
}
.award-badges img {
  width: 30px;
  height: 30px;
}
.team-intro {
  margin-top: 7px;
  background: #F7FAFE;
  border-radius: 9px;
  padding: 11px 15px;
}
.join-now-teaser {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--ff-accent);
  font-weight: 500;
}

/*********
 * Print *
 *********/
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close {
    display: none !important;
  }
  body, html {
    background: #FFF !important;
    color: #222 !important;
    font-size: 12pt;
  }
  * { box-shadow: none !important; }
}
