/* ===================== 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,
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.6;
  background: #F5F2F0;
  color: #223042;
  font-family: 'Georgia', 'Roboto', serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #245978;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #0D2F45;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* ===================== TYPOGRAPHY ===================== */
@import url('https://fonts.googleapis.com/css?family=Raleway:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400italic,500&display=swap');

body {
  font-family: 'Georgia', 'Roboto', serif;
  font-size: 16px;
  color: #223042;
  background-color: #F5F2F0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Georgia', serif;
  font-weight: 700;
  color: #245978;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 14px; }
h4 { font-size: 1.25rem; }
p {
  font-family: 'Georgia', 'Roboto', serif;
  font-size: 1.125rem;
  color: #223042;
  margin-bottom: 16px;
}
.text-section p,
.text-section ul, .text-section ol {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #223042;
}
ul, ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}

/* ===================== LAYOUT CONTAINERS ===================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(36, 89, 120, 0.06), 0 0.5px 1px rgba(36, 89, 120, 0.04);
}
/* Ensure minimum 20px margin between content cards/sections */
.section + .section {
  margin-top: 20px;
}

/* ===================== HEADER & NAVIGATION ===================== */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(36, 89, 120, 0.04);
  position: relative;
  z-index: 1200;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding: 16px 0px 16px 0;
}
.main-nav a {
  font-family: 'Raleway', 'Georgia', serif;
  font-size: 1.1rem;
  padding: 6px 10px;
  border-radius: 8px;
  color: #245978;
  transition: background 0.2s, color 0.18s;
}
.main-nav a[aria-current], .main-nav a.active {
  background: #FFD97A;
  color: #223042;
  font-weight: 700;
}
.main-nav img {
  height: 40px;
  margin-right: 10px;
}

/* Mobile navigation */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 18px;
  width: 38px;
  height: 38px;
  font-size: 2rem;
  color: #245978;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eff1ed;
  z-index: 1400;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FFD97A;
  color: #223042;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1500;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.6,.2,.25,1);
  box-shadow: 0 8px 48px rgba(36,89,120,0.13);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: #FFD97A;
  color: #223042;
  border-radius: 8px;
  padding: 6px 12px;
  margin-bottom: 16px;
  border: none;
  transition: background 0.2s;
  z-index: 2000;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #245978;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}
.mobile-nav a {
  display: block;
  font-family: 'Raleway', 'Georgia', serif;
  font-size: 1.25rem;
  background: none;
  color: #245978;
  border-radius: 8px;
  padding: 14px 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a[aria-current], .mobile-nav a.active {
  background: #FFD97A;
  color: #223042;
}
.mobile-nav a:active, .mobile-nav a:focus {
  background: #F5F2F0;
  color: #223042;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
    font-size: 1.02rem;
  }
  .container {
    padding-left: 8px; padding-right: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===================== HERO SECTION ===================== */
.hero {
  background: #245978;
  color: #fff;
  padding: 60px 0 48px 0;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  margin-bottom: 60px;
  box-shadow: 0 16px 52px rgba(36, 89, 120, 0.10);
}
.hero .container {
  padding-top: 0; padding-bottom: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1, .hero h2 {
  color: #FFD97A;
  font-size: 2.6rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  font-family: 'Raleway', 'Georgia', serif;
}
.hero p {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 28px;
}
.hero .btn-primary {
  background: #FFD97A;
  color: #245978;
  border-radius: 8px;
  font-size: 1.18rem;
  font-family: 'Raleway', serif;
  font-weight: 800;
  padding: 14px 32px;
  box-shadow: 0 3px 16px rgba(36, 89, 120, 0.04);
  transition: background 0.22s, color 0.22s, box-shadow 0.20s;
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: #245978;
  color: #FFD97A;
  box-shadow: 0 6px 24px rgba(36, 89, 120, 0.14);
}

/* ===================== FEATURES & CARDS ===================== */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(36, 89, 120, 0.065);
}
.features .content-wrapper {
  gap: 28px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  flex: 1 1 210px;
  background: #F5F2F0;
  border-radius: 14px;
  padding: 22px 20px 18px 20px;
  box-shadow: 0 1.5px 8px rgba(36, 89, 120, 0.05);
  border: 1px solid #f1e9dd;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 7px 24px rgba(36, 89, 120, 0.10);
  transform: translateY(-6px);
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature-item h3 {
  font-size: 1.18rem;
  color: #245978;
  margin-bottom: 7px; margin-top: 3px;
}
.feature-item p {
  color: #223042;
  font-size: 1rem;
}

/* ===================== CARDS ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(36,89,120,0.07), 0 0.5px 2px rgba(36,89,120,0.04);
  padding: 22px 18px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 22px rgba(36,89,120,0.13);
  transform: translateY(-4px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===================== TEXT WITH 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: 20px;
  }
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FAF9F6;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(36,89,120,0.07);
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(36, 89, 120, 0.07);
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
  border-left: 6px solid #FFD97A;
  transition: box-shadow 0.2s, border-left-color 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 24px rgba(36, 89, 120, 0.13);
  border-left-color: #245978;
}
.testimonial-card p {
  flex: 3 1 160px;
  color: #223042;
  font-size: 1.07rem;
}
.testimonial-card span {
  flex: 1 1 70px;
  color: #245978;
  font-family: 'Raleway', serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 10px;
}
.testimonial-card .stars {
  flex: none;
  color: #FFD97A;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  font-family: 'Raleway', serif;
}

/* Contrast for testimonials on light background */
.testimonial-card,
.testimonial-card p,
.testimonial-card span { color: #223042; }
@media (max-width:600px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 10px; }
  .testimonial-card span { margin-left: 0; }
}

/*************************** CTA SECTION ***************************/
.cta {
  background: #245978;
  color: #FFD97A;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 6px rgba(36,89,120,0.09);
}
.cta .content-wrapper { align-items: center; text-align: center; gap: 24px; }
.cta h2, .cta h3, .cta p {
  color: #FFD97A;
}
.cta .btn-primary {
  background: #FFD97A;
  color: #245978;
  border-radius: 8px;
  font-size: 1.11rem;
  font-family: 'Raleway', serif;
  padding: 13px 28px;
  margin-top: 14px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(36,89,120,0.045);
  transition: background 0.2s, color 0.2s, box-shadow 0.20s;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #245978;
  color: #FFD97A;
  box-shadow: 0 7px 24px rgba(36,89,120,0.13);
}

/************************* BUTTONS *************************/
.btn-primary {
  display: inline-block;
  background: #245978;
  color: #FFD97A;
  border: none;
  border-radius: 8px;
  font-family: 'Raleway', serif;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 11px 28px;
  margin-top: 12px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px rgba(36,89,120,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.17s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD97A;
  color: #245978;
  box-shadow: 0 7px 24px rgba(36,89,120,0.13);
}

/************************* CARDS (MANUAL UTILITY) *************************/
/* See .card-container & .card above */

/************************* LEGAL & TEXT SECTION *************************/
.legal {
  background: #fff;
  border-radius: 16px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 8px rgba(36,89,120,0.06);
}
.text-section {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  color: #223042;
  line-height: 1.7;
}
.text-section h1, .text-section h2, .text-section h3 {
  margin-top: 30px;
  margin-bottom: 14px;
}
.text-section ul {
  margin-bottom: 16px;
}

/************************* SECTION SPACING RULES *************************/
.section, .features, .testimonials, .cta, .legal, .about, .team, .contact, .services, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/************************* SERVICE LISTS *************************/
.services ul {
  margin: 0 0 18px 18px;
  padding: 0;
  list-style: disc inside;
}
.services li {
  margin-bottom: 12px;
  color: #223042;
  font-size: 1.07rem;
}
.services li span {
  font-family: 'Raleway', serif;
  color: #245978;
  margin-left: 8px;
  font-weight: 700;
}
.services p {
  color: #223042;
  margin-bottom: 0;
}

/************************* FOOTER *************************/
footer {
  background: #245978;
  color: #fff;
  padding: 36px 0 20px 0;
  margin-top: 60px;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  box-shadow: 0 -8px 38px rgba(36,89,120,0.09);
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #FFD97A;
  font-family: 'Raleway', serif;
  font-size: 1rem;
  padding: 3px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFD97A;
  color: #245978;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  color: #fff;
  opacity: 0.91;
  gap: 3px;
}
.footer-contact span {
  font-family: 'Georgia', 'Roboto', serif;
  color: #fff;
  margin-bottom: 2px;
}

/************************* RESPONSIVE BREAKPOINTS *************************/
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
    padding-left: 8px; padding-right: 8px;
  }
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 800px) {
  .feature-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .container {
    max-width: 99vw;
    padding-left: 6px; padding-right: 6px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 32px 0;
    border-radius: 0 0 18px 18px;
    margin-bottom: 28px;
  }
  .hero h1 { font-size: 1.5rem; }
  .section, .features, .testimonials, .cta, .legal, .about, .team, .contact, .services, .thank-you {
    padding: 24px 8px;
    border-radius: 8px;
    margin-bottom: 32px;
  }
  .feature-grid { gap: 14px; }
  .feature-item { padding: 13px 8px 12px 10px; min-width: 140px; }
  .card { min-width: 160px; padding: 16px 8px; font-size: .96rem; }
  .testimonials { padding: 23px 4px; border-radius: 8px; }
  .cta { border-radius: 8px; padding: 22px 6px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1rem; }
  .footer-nav { flex-direction: column; gap: 6px; }
  .features, .testimonials, .section, .cta, .legal, .services, .about, .team, .thank-you {
    padding: 13px 3px;
    margin-bottom: 16px;
    border-radius: 5px;
  }
}

/************************* FLEX UTILITIES *************************/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/************************* THANK YOU PAGE *************************/
.thank-you {
  background: #fff;
  border-radius: 16px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 8px rgba(36,89,120,0.06);
  text-align: center;
}
.thank-you ul {
  margin: 20px auto 16px auto;
  text-align: left;
  display: inline-block;
}

/************************* COOKIE CONSENT BANNER *************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #223042;
  box-shadow: 0 -3px 24px rgba(36,89,120,0.13);
  padding: 32px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3000;
  animation: cookieSlideUp 0.45s cubic-bezier(.6,.2,.25,1);
  font-size: 1rem;
}
@keyframes cookieSlideUp {
  from { transform: translateY(140%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #223042;
  margin-bottom: 15px;
}
.cookie-banner-actions {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-banner .btn-accept {
  background: #FFD97A;
  color: #245978;
  border-radius: 8px;
  font-family: 'Raleway', serif;
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  transition: background 0.2s, color 0.2s;
  margin-right: 8px;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #245978;
  color: #FFD97A;
}
.cookie-banner .btn-reject {
  background: #fff;
  border: 1px solid #245978;
  color: #245978;
  border-radius: 8px;
  padding: 13px 22px;
  font-size: 1rem;
  font-family: 'Raleway', serif;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #FFD97A;
  color: #245978;
  border-color: #FFD97A;
}
.cookie-banner .btn-settings {
  background: none;
  border: none;
  color: #245978;
  text-decoration: underline;
  font-size: 1rem;
  font-family: 'Raleway', serif;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.18s, color 0.2s;
  padding: 9px 12px;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #F5F2F0;
  color: #223042;
}

/************************* COOKIE MODAL (PREFERENCES) *************************/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,89,120,0.2);
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.34s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  padding: 32px 20px 20px 20px;
  border-radius: 18px;
  box-shadow: 0 7px 44px rgba(36,89,120,0.22);
  max-width: 390px;
  width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 3400;
  animation: modalPopIn 0.36s cubic-bezier(.6,.2,.34,1.1);
}
@keyframes modalPopIn {
  from { transform: scale(0.84); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #245978;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Raleway', serif;
  font-size: 1rem;
  color: #245978;
  margin-bottom: 8px;
}
.cookie-modal input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #245978;
  background: #fff;
  border-radius: 4px;
  margin-right: 4px;
  position: relative;
  transition: background 0.16s;
}
.cookie-modal input[type="checkbox"]:checked {
  background: #FFD97A;
  border-color: #FFD97A;
}
.cookie-modal input[type="checkbox"]:checked:after {
  content: '\2714';
  position: absolute;
  left: 2px; top: -2px;
  color: #245978;
  font-weight: 800;
  font-size: 1.02rem;
}
.cookie-modal-category-desc {
  font-size: 0.95rem;
  color: #223042;
  margin-left: 26px;
  margin-bottom: 11px;
  opacity: 0.85;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .btn-accept, .cookie-modal .btn-reject, .cookie-modal .btn-close {
  padding: 10px 22px;
  font-family: 'Raleway', serif;
  border-radius: 7px;
  font-size: 1rem;
  border: none;
  font-weight: 700;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal .btn-accept { background: #FFD97A; color: #245978; }
.cookie-modal .btn-accept:hover, .cookie-modal .btn-accept:focus {
  background: #245978;
  color: #FFD97A;
}
.cookie-modal .btn-reject { background: #fff; color: #245978; border: 1px solid #245978; }
.cookie-modal .btn-reject:hover, .cookie-modal .btn-reject:focus {
  background: #FFD97A; color: #245978; border-color: #FFD97A;
}
.cookie-modal .btn-close {
  position: absolute; top: 14px; right: 12px;
  background: #F5F2F0;
  color: #245978;
  font-size: 1.5rem;
  border-radius: 8px;
  padding: 2px 9px;
  font-weight: 500;
  border: none;
  transition: background 0.17s;
}
.cookie-modal .btn-close:hover, .cookie-modal .btn-close:focus {
  background: #FFD97A;
  color: #223042;
}

/************************* MICRO-INTERACTIONS *************************/
.btn-primary, .feature-item, .card, .testimonial-card, .main-nav a, .footer-nav a {
  transition: background 0.18s, color 0.18s, transform 0.19s, box-shadow 0.2s, border 0.18s;
}

/************************* COLOR UTILITIES *************************/
.bg-primary    { background: #245978 !important; color: #FFD97A !important; }
.bg-secondary  { background: #FFD97A !important; color: #223042 !important; }
.bg-accent     { background: #F5F2F0 !important; color: #245978 !important; }
.color-primary { color: #245978 !important; }
.color-accent  { color: #FFD97A !important; }

/* ================== END ================== */
