/* =============================================================
   Exotic Current – Elegant Classic CSS
   Consistent for all pages – Mobile-first, flex-only layout
   ============================================================= */
/* 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;
}
html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: "Georgia", 'Times New Roman', Times, serif;
  color: #16243B;
  background: #F6F5F5;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #16243B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #DA0037;
  outline-offset: 2px;
}

/* TYPOGRAPHY SCALE & HIERARCHY */
h1, h2, h3, h4, h5, h6 {
  font-family: "Georgia", 'Times New Roman', Times, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #16243B;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
p, li, blockquote, cite {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #16243B;
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.7;
}
p.subtitle {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #4D5671;
  font-size: 1.15rem;
  margin-bottom: 26px;
  letter-spacing: 0.01em;
}
strong {
  font-weight: bold;
}
blockquote {
  font-style: italic;
  color: #16243B;
  border-left: 4px solid #DA0037;
  padding-left: 18px;
  margin-bottom: 8px;
  background: #F1ECDF;
}
cite {
  display: block;
  color: #6B6B6B;
  font-size: 0.98rem;
  text-align: right;
}

/* SPACING AND CONTAINER SYSTEM */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
main {
  margin-bottom: 40px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin-bottom: 32px;
}
.text-section {
  margin-left: auto;
  margin-right: auto;
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 24px rgba(30,30,30,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(30,30,30,0.17);
  z-index: 1;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px 18px 24px;
  margin-bottom: 20px;
  background: #F1ECDF;
  border-radius: 10px;
  border: 1px solid #E5DFCA;
  box-shadow: 0 1px 10px 0 rgba(22,36,59,0.05);
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE AND SERVICE LISTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid > div {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 18px 0 rgba(22,36,59,0.07);
  padding: 32px 22px 28px 22px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 30px 0 rgba(22,36,59,0.13);
  transform: translateY(-5px);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 18px 0 rgba(22,36,59,0.08);
  padding: 30px 22px 22px 22px;
  min-width: 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}
.service-list > div:hover {
  box-shadow: 0 8px 32px 0 rgba(22,36,59,0.15);
  transform: translateY(-4px);
}

/* BUTTONS & CALLS TO ACTION */
.cta-button, .cookie-btn {
  display: inline-block;
  font-family: "Georgia", 'Times New Roman', Times, serif;
  background: #DA0037;
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(218,0,55,0.08);
  transition: background 0.22s, color 0.22s, transform 0.18s;
  margin-top: 12px;
  text-align: center;
}
.cta-button:hover,
.cta-button:focus,
.cookie-btn:hover,
.cookie-btn:focus {
  background: #b90029;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

/* NAVIGATION & HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(22,36,59,0.07);
  position: sticky;
  top: 0;
  z-index: 98;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 16px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: "Georgia", 'Times New Roman', Times, serif;
  font-size: 1.01rem;
  color: #16243B;
  padding: 7px 10px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover,
header nav a:focus {
  background: #F1ECDF;
  color: #DA0037;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #16243B;
  cursor: pointer;
  margin-left: 6px;
  padding: 9px 14px;
  border-radius: 5px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E5DFCA;
}
/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #16243B;
  color: #fff;
  z-index: 120;
  transform: translateX(-110%);
  transition: transform 0.37s cubic-bezier(.77,.23,.24,.97);
  display: flex;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 18px 28px 0px 0;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s;
  z-index: 121;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #DA0037;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 56px 0 0 38px;
}
.mobile-nav a {
  font-family: "Georgia", 'Times New Roman', Times, serif;
  color: #fff;
  font-size: 1.4rem;
  padding: 12px 6px;
  border-radius: 4px;
  margin-right: 32px;
  transition: background 0.18s, color 0.18s;
  line-height: 1.25;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #fff;
  color: #DA0037;
}
@media (max-width: 1060px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 4px;
    padding: 12px 4vw 12px 4vw;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 850px) {
  .feature-grid > div, .service-list > div {
    min-width: 170px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  main {
    margin-bottom: 10px;
  }
  .section {
    margin-bottom: 34px;
    padding: 28px 8px;
  }
  .card-container, .feature-grid, .service-list, .content-grid {
    gap: 14px;
  }
  .content-grid, .feature-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
}
/* Hide mobile menu in desktop */
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #16243B;
  color: #fff;
  padding: 38px 0 22px 0;
  border-top: 4px solid #DA0037;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 1rem;
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-nav {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #F6F5F5;
  font-family: "Georgia", 'Times New Roman', Times, serif;
  transition: color 0.2s;
  font-size: 1rem;
  padding: 0 3px;
}
.footer-nav a:hover {
  color: #DA0037;
  text-decoration: underline;
}
.footer-contact p, .footer-contact a {
  color: #F6F5F5 !important;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  margin-bottom: 9px;
}
.footer-contact a {
  text-decoration: underline;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-logo {
    margin-bottom: 8px;
  }
}

/* SOCIAL LINKS STYLE */
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
}
.social-links img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ECE5D1;
  padding: 5px;
  box-shadow: 0 1px 5px rgba(22,36,59,0.07);
  transition: background 0.14s;
}
.social-links img:hover {
  background: #DA0037;
}

/* MISC ELEMENTS */
ul {
  margin-left: 0;
  margin-bottom: 18px;
  padding-left: 20px;
  list-style: disc;
}
ul li {
  margin-bottom: 11px;
  font-size: 1.01rem;
  line-height: 1.5;
}
ol {
  margin-left: 0;
  margin-bottom: 18px;
  padding-left: 26px;
  list-style: decimal;
}
ol li {
  margin-bottom: 10px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #FFF6EB;
  color: #26201A;
  box-shadow: 0 -2px 18px 0 rgba(22,36,59,0.08);
  padding: 22px 16px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 3000;
  font-size: 1.02rem;
  transition: transform 0.32s cubic-bezier(.76,.23,.23,.81), opacity 0.3s;
  transform: translateY(105%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner-content {
  flex: 1 100%;
  max-width: 560px;
  text-align: left;
  margin-bottom: 8px;
}
.cookie-btn {
  margin-right: 5px;
  margin-bottom: 8px;
  color: #fff;
  background: #DA0037;
  border: none;
  border-radius: 20px;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: "Georgia", 'Times New Roman', Times, serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, transform 0.14s;
}
.cookie-btn.settings {
  background: #16243B;
}
.cookie-btn.reject {
  background: #E5E2E0;
  color: #DA0037;
  border: 1.5px solid #DA0037;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #b90029;
  color: #fff;
  transform: translateY(-1px) scale(1.025);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff;
  color: #DA0037;
  border-color: #b90029;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #22365B;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0.97);
  min-width: 330px;
  max-width: 98vw;
  background: #fff;
  color: #16243B;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(22,36,59,0.21);
  padding: 36px 30px 30px 30px;
  z-index: 3100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.29s cubic-bezier(.55,.05,.72,.88), transform 0.33s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #DA0037;
  cursor: pointer;
  padding: 7px 13px;
  border-radius: 5px;
}
.cookie-modal-close:hover {
  background: #E5DFCA;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  margin-top: 0;
}
.cookie-modal .cookie-tabs {
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  min-width: 40px;
}
.cookie-modal label {
  font-weight: 600;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #DA0037;
  width: 20px;
  height: 20px;
}
.cookie-modal .note {
  font-size: 0.98rem;
  color: #999;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 8px 20px 8px;
    min-width: 0;
  }
}


/* FORM ELEMENTS */
input, textarea, select {
  padding: 10px 12px;
  border-radius: 7px;
  border: 1px solid #E5DFCA;
  background: #FBF8F3;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #16243B;
  margin-bottom: 16px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #DA0037;
  border-color: #DA0037;
  background: #FFF6EB;
}
label {
  font-family: "Georgia", 'Times New Roman', Times, serif;
  font-size: 1rem;
  margin-bottom: 4px;
  display: block;
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .feature-grid > div, .service-list > div {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:active, .feature-grid > div:active, .service-list > div:active {
  transform: scale(0.995);
}
.cta-button:active {
  transform: scale(0.97);
}

/* ACCESSIBILITY & FOCUS */
:focus-visible {
  outline: 2px solid #DA0037;
  outline-offset: 2px;
}

/* ENSURE MINIMUM SPACINGS BETWEEN ALL FLEX ITEMS (OVERRIDE) */
.card-container > *, .feature-grid > *, .service-list > * {
  margin-right: 0 !important;
  margin-bottom: 20px !important;
}
.card-container > *:last-child, .feature-grid > *:last-child, .service-list > *:last-child {
  margin-bottom: 0 !important;
}

/* REMOVE UNDERLINE FROM IMAGE LINKS */
a img {
  border: none;
}

/* UTILITY CLASSES */
.hide {
  display: none !important;
}
.text-center {
  text-align: center !important;
}
.mt-32 {
  margin-top: 32px !important;
}
.mt-16 {
  margin-top: 16px !important;
}
.mb-16 {
  margin-bottom: 16px !important;
}
.mb-24 {
  margin-bottom: 24px !important;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 600px) {
  h1 {
    font-size: 1.55rem;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 1.23rem;
    margin-bottom: 16px;
  }
  h3 {
    font-size: 1.04rem;
    margin-bottom: 10px;
  }
  .card, .feature-grid > div, .service-list > div {
    padding: 18px 9px 15px 10px;
    border-radius: 7px;
  }
  .testimonial-card {
    padding: 13px 6px 11px 10px;
    border-radius: 7px;
  }
  header .container {
    flex-direction: row;
    gap: 2px;
    padding: 9px 2vw 9px 2vw;
  }
  .footer-logo img {
    height: 38px;
  }
}
section {
  padding: 15px;
}