/* =========================
   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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3ECE7;
  color: #33455C;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  color: #33455C;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
}

/* ========================================
   FONT IMPORTS & BASE TYPOGRAPHY
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #33455C;
  background: #F3ECE7;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  color: #33455C;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; }
p, ul, ol, li, table, th, td {
  font-size: 1rem;
}
strong { font-weight: 700; }
em, i { font-style: italic; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* ===========================
   STRUCTURE & CONTAINERS
=========================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(51,69,92,0.05);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 992px) {
  .content-wrapper {
    padding: 12px 30px;
  }
}

/* ====================
   HEADER & NAVIGATION
==================== */
header {
  background: #33455C;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1080;
  box-shadow: 0 4px 24px 0 rgba(51,69,92,0.08);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  min-height: 72px;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.main-nav > a {
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  font-size: 16px;
  line-height: 1.3;
}
.main-nav > a:hover, .main-nav > a:focus {
  background: rgba(243,236,231,0.10);
  color: #C84E3C;
}
.main-nav img {
  height: 40px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 8px;
  background: #F3ECE7;
  padding: 2px;
}
.cta-button {
  padding: 10px 22px;
  border-radius: 12px;
  background: #C84E3C;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border:none;
  transition: background 0.2s,box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(51,69,92,0.09);
  margin-left: 10px;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #B02D14;
  color: #fff;
  box-shadow: 0 4px 16px rgba(200,78,60,0.12);
}

/* ================
   MOBILE MENU
================ */
.mobile-menu-toggle {
  display: none;
  position: relative;
  background: none;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  padding: 10px;
  z-index: 20010;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #fff;
  background: #2c3a4a;
  border-radius: 50%;
}
.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #33455C;
  color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.65,-0.01,0,1.01);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 22px 22px 0 0;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(243,236,231,0.10);
  color: #C84E3C;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 30px;
  padding: 18px 32px;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(243,236,231,0.08);
  width: 100%;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C84E3C;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width:1025px) {
  .mobile-menu {
    display:none!important;
  }
  .mobile-menu-toggle {
    display: none!important;
  }
}

/* =================
      HERO SECTION
================== */
.hero {
  padding: 64px 0 48px 0;
  background: linear-gradient(90deg, #F3ECE7 0%, #ffffff 100%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #33455C;
  font-size: 2.5rem;
  letter-spacing: -1px;
}
@media (max-width:768px){
  .hero {
    padding: 36px 0 18px 0;
    border-radius: 0 0 20px 20px;
    margin-bottom:24px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}

/* =========================
   FEATURE & CARD GRIDS
========================= */
.feature-grid, .trend-listing, .highlight-grid, .team-grid, .body-shape-guides {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.feature {
  flex: 1 0 220px;
  min-width: 210px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 12px 0 rgba(51,69,92,0.07);
  padding: 32px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #E9E7E1;
  transition: box-shadow 0.22s, border-color 0.22s;
}
.feature:hover {
  border-color: #C84E3C;
  box-shadow: 0 4px 20px 0 rgba(200,78,60,0.10);
}
.feature img {
  width: 46px;
  height: 46px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 12px rgba(51,69,92,0.06);
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom:20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.team-grid {
  gap: 24px;
}
.team-member {
  flex: 1 0 210px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(51,69,92,0.05);
  border-radius: 12px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.team-member img {
  width: 38px;
  border-radius: 50%;
  background: #f3ece7;
}
.team-member strong {
  font-size: 1.08rem;
  color: #33455C;
}
.team-member span {
  font-size: 0.96rem;
  color: #445973;
  opacity: 0.9;
}

.body-shape-guides {
  gap: 24px;
}
.shape-guide {
  flex: 1 0 206px;
  background: #fff;
  padding: 28px 15px 16px;
  border-radius: 11px;
  box-shadow: 0 2px 14px rgba(51,69,92,0.08);
  text-align: left;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e6e3dc;
}
.shape-guide img {
  width: 26px;
  margin-bottom: 4px;
}
.shape-guide h3 {
  margin: 0;
  color: #C84E3C;
}

@media (max-width: 900px) {
  .feature-grid, .team-grid, .trend-listing, .body-shape-guides {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* ============================
       CARDS & CARD GRIDS
============================ */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ==============
    TEXT + IMAGE
============== */
.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;
  }
}

/* ===============
    FEATURES
=============== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ======================
     TESTIMONIAL CARDS
====================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  min-width: 240px;
  flex: 1 1 320px;
  max-width: 380px;
  background: #F3ECE7;
  color: #33455C;
  border-radius: 16px;
  box-shadow: 0 2px 15px 0 rgba(51,69,92,0.08);
  padding: 24px;
  margin-bottom: 20px;
  border-left: 5px solid #33455C;
  transition: box-shadow 0.2s, border-left 0.2s, background 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(200,78,60,0.09);
  border-left: 5px solid #C84E3C;
  background: #fff;
}
.testimonial-card p {
  color: #33455C;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: #B02D14;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 4px;
}

/* =========================
    NEWSLETTER
========================= */
.newsletter-section {
  background: #f9fafc;
  border: 1.5px solid #e9e8e3;
  box-shadow: 0 2px 12px rgba(51,69,92,0.03);
  border-radius: 20px;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0;
}
.newsletter-form input[type="email"] {
  flex: 1 1 160px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #c6ced8;
  font-size: 1rem;
  background: #fff;
  color: #33455C;
  transition: border 0.18s;
}
.newsletter-form input[type="email"]:focus {
  border: 1.5px solid #33455C;
}
.newsletter-form button {
  background: #33455C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 1rem;
  transition: background 0.18s, box-shadow 0.18s;
}
.newsletter-form button:hover, .newsletter-form button:focus {
  background: #C84E3C;
  box-shadow: 0 2px 10px rgba(51,69,92,0.10);
}
.newsletter-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 12px 0 0 0;
}
.newsletter-benefits li {
  background: #fff;
  border: 1.2px solid #cfd9e6;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.97rem;
  font-weight: 500;
  color: #33455C;
  box-shadow: 0 1px 6px rgba(51,69,92,0.04);
}

@media (max-width:650px){
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-benefits {
    flex-direction: column;
    gap: 8px;
  }
}
/* ========================
     SERVICE TABLE
======================== */
.services-table {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 12px rgba(51,69,92,0.04);
  width: 100%;
  overflow-x: auto;
  margin-bottom: 16px;
  font-size: 1rem;
  border: 1px solid #dedede;
}
.services-table th, .services-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #ede4e1;
  color: #33455C;
  text-align: left;
}
.services-table th {
  background: #f6f7fa;
  font-weight: 700;
  font-size: 1.06rem;
}
.services-table tr:last-child td {
  border-bottom: none;
}
.services-table tr:hover td:not(:first-child) {
  background: #f2f6fb;
}
.services-table tr td:last-child {
  font-weight: 700;
  color: #C84E3C;
}

/* ========================
           CTA
======================== */
.cta {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(51,69,92,0.03);
  padding: 40px 22px;
  margin-bottom: 40px;
}
.contact-info {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-info p {
  color: #33455C;
  font-size: 0.98rem;
}

/* ===============================
      FOOTER
=============================== */
footer {
  background: #33455C;
  color: #FFF;
  padding: 0;
  border-radius: 18px 18px 0 0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 46px 0 28px 0;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.footer-main nav a {
  color: #F3ECE7;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.15s, text-decoration 0.15s;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  color: #C84E3C;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}
.footer-contact img {
  width: 16px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-bottom {
  border-top: 1px solid #3c5574;
  padding: 15px 0 6px 0;
  text-align: center;
  font-size: 0.97rem;
  color: #c5d0de;
  letter-spacing: 0.01em;
}
footer a img {
  height: 36px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .footer-main {
    gap: 12px;
  }
  .footer-main nav {
    gap: 5px;
  }
}

/* =========================
        UTILS & ELEMENTS
========================= */
.price {
  color: #C84E3C;
  font-weight: 600;
  margin-left: 8px;
}
.occasion {
  color: #B02D14;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 6px;
}
.quick-facts {
  color: #445973;
  font-size: 0.98rem;
}
.brand-philosophy {
  margin: 18px 0 0 0;
  color: #B02D14;
  font-size: 1.02rem;
  font-style: italic;
}
.seasonal-advice, .question-box, .seasonal-switch {
  background: #E2ECF2;
  color: #33455C;
  padding: 20px 22px;
  border-radius: 10px;
  margin: 12px 0 0 0;
  font-size: 0.99rem;
  box-shadow: 0 1px 5px #cfd9e64a;
}
.question-box {
  border-left: 5px solid #B02D14;
  background: #F3ECE7;
}
.seasonal-switch {
  border-left: 5px solid #C84E3C;
}
.policy-text, .terms-text, .cookie-text, .gdpr-text, .map {
  margin: 18px 0 0 0;
  color: #33455C;
  font-size: 1.01rem;
}

.outfit-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 16px;
}
.outfit-examples > div {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 7px #b9c4d050;
  padding: 16px 13px;
  min-width: 210px;
  flex: 1 0 200px;
}

@media (max-width: 900px) {
  .outfit-examples {
    flex-direction: column;
    gap: 10px;
  }
}

/* FAQ - dl */
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #33455C;
  margin-top: 18px;
  font-size: 1.06rem;
}
.faq-list dd {
  font-size: 1rem;
  color: #555;
  margin-top: 6px;
  margin-bottom: 12px;
  margin-left: 0;
}

/*************************
   BUTTONS & LINKS
**************************/
button, .cta-button, input[type="submit"] {
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  border: none;
}
a {
  color: #C84E3C;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #B02D14;
  text-decoration: none;
}

/* ===============
   TABLE CUSTOM
================ */
.step-by-step, .benefits, .mix-guides {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

/* =========================
   ANIMATIONS & INTERACTIONS
========================= */
.cta-button, .newsletter-form button, .main-nav > a, .mobile-nav a {
  transition: background 0.22s, box-shadow 0.22s, color 0.22s, border 0.17s, transform 0.18s;
}
.cta-button:active, .newsletter-form button:active, .main-nav > a:active, .mobile-nav a:active {
  transform: scale(0.97);
}

/*********************************************
  RESPONSIVE SPACING, STACK, & CONTAINERS
**********************************************/
@media (max-width: 900px) {
  .section {
    margin-bottom: 36px;
    padding: 25px 6px;
  }
  .content-wrapper, .content-grid {
    gap: 14px;
    padding: 0 2px;
  }
}

/********************
 MOBILE-ONLY LAYOUTS
**********************/
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .section {
    margin-bottom: 30px;
    padding: 18px 4px;
    border-radius: 10px;
  }
  .hero {
    padding: 24px 0 10px 0;
    border-radius: 0 0 10px 10px;
  }
  .footer-main {
    flex-direction: column;
    gap: 10px;
    padding: 22px 0 8px 0;
  }
}

/*********************************************
   COOKIE CONSENT BANNER & COOKIE MODAL
**********************************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  z-index: 99999;
  background: #fff;
  color: #33455C;
  border-top: 3px solid #33455C;
  box-shadow: 0 -3px 24px 0 rgba(51,69,92,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 14px 18px 14px;
  font-size: 1rem;
  animation: slideUpCookie 0.8s ease;
}
@keyframes slideUpCookie {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  margin: 0 7px 0 0;
  padding: 8px 19px;
  border-radius: 8px;
  background: #33455C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner button.accept {
  background: #C84E3C;
  color: #fff;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #B02D14;
}
.cookie-banner button.reject {
  background: #33455C;
  color: #fff;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #22324a;
}
.cookie-banner button.settings {
  background: #E9E7E1;
  color: #33455C;
  font-weight: 500;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #C84E3C;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    padding: 12px 4px 8px 4px;
  }
  .cookie-banner button {
    margin-bottom: 5px;
    width: 100%;
    padding: 7px 0;
  }
}

/*********** COOKIE CONSENT MODAL *********/
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right:0; bottom:0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  background: rgba(51,69,92,0.60);
  justify-content: center;
  align-items: center;
  animation: cookieModalPopIn 0.4s;
}
@keyframes cookieModalPopIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #33455C;
  border-radius: 18px;
  box-shadow: 0 4px 36px 0 rgba(51,69,92,0.13);
  max-width: 98vw;
  width: 400px;
  padding: 30px 28px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieContentPop 0.5s;
}
@keyframes cookieContentPop {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.cookie-modal-category input[type="checkbox"]:not(:first-child){
  accent-color: #C84E3C;
  width: 17px;
  height: 17px;
}
.cookie-modal-close {
  position: absolute;
  right: 17px;
  top: 10px;
  background: none;
  border: none;
  color: #B02D14;
  font-size: 2rem;
  line-height: 1;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f8e6e3;
}
.cookie-modal-actions {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 8px 24px;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal-actions button.save {
  background: #33455C;
  color: #fff;
}
.cookie-modal-actions button.reject {
  background: #E2ECF2;
  color: #33455C;
}
.cookie-modal-actions button.save:hover, .cookie-modal-actions button.save:focus {
  background: #B02D14;
  color: #fff;
}
.cookie-modal-actions button.reject:hover, .cookie-modal-actions button.reject:focus {
  background: #C84E3C;
  color: #fff;
}

/************************************
   MISC. & ACCESSIBILITY CLASSES
*************************************/
section {
  margin-bottom: 60px;
}

::-webkit-input-placeholder { color:#67728C; }
:-ms-input-placeholder { color:#67728C; }
::placeholder { color:#67728C; }

[tabindex]:focus {
  outline: 2px solid #C84E3C;
  outline-offset: 1px;
}

hr {
  border: none;
  height: 1.5px;
  background: #E9E7E1;
  margin: 30px 0;
  border-radius: 1px;
}

/*************************
    HIGH CONTRAST NOTICE
**************************/
@media (prefers-contrast: more) {
  body, .section, .card, .feature, .testimonial-card {
    background: #fff !important;
    color: #222 !important;
  }
}
