/* CSS RESET & NORMALIZATION */
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,
main, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background: #FFF6EF;
  color: #1A2326;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
img,
svg {
  display: inline-block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
a {
  color: #044568;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #E3992A;
}
button {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
hr {
  border: none;
  border-top: 1px solid #edd8bb;
  margin: 32px 0;
}

/* BRAND COLORS VARIABLES */
:root {
  --brand-primary: #044568;
  --brand-secondary: #FFFFFF;
  --brand-accent: #E3992A;
  --warm-bg: #FFF6EF;
  --warm-grey: #FAEFE7;
  --neutral: #F8F4F0;
  --shadow: 0 6px 28px 0 rgba(34,28,23,0.10);
  --radius: 24px;
  --radius-med: 16px;
  --radius-sm: 8px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.7em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.18;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.37rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li, .text-section {
  color: #55403b;
  font-size: 1.06rem;
  margin-bottom: 18px;
}
strong, b {
  font-weight: 700;
  color: var(--brand-primary);
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* HEADER NAVIGATION */
header {
  background: var(--brand-secondary);
  box-shadow: 0 2px 14px 0 rgba(34,28,23,0.05);
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--brand-primary);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  transition: background 0.15s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-secondary);
}
header img {
  height: 38px;
  width: auto;
}
header .cta.primary {
  margin-left: 10px;
}

/* CTA BUTTONS */
.cta.primary {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--brand-secondary);
  border-radius: 30px;
  padding: 13px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 3px 14px 0 rgba(227,153,42,0.08);
  border: none;
  transition: background 0.17s, color 0.16s, transform 0.13s;
  cursor: pointer;
  margin: 8px 0;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
  transform: translateY(-2px) scale(1.025);
}

/* FLEXBOX LAYOUTS -- AS REQUIRED */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
}
.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;
  background: var(--brand-secondary);
  border-radius: var(--radius-med);
  box-shadow: 0 2px 12px 0 rgba(34,28,23,0.08);
  margin-bottom: 32px;
  max-width: 560px;
}
.testimonials .testimonial-card p, .testimonials .testimonial-card span, .testimonials .testimonial-card strong, .testimonials .testimonial-card h3 {
  color: #342820;
  font-size: 1.1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(100deg, #FFE7C3 0%, #FFF6EF 64%);
  padding: 60px 0;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 600px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 14px;
}

/* FEATURE SECTIONS */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 24px;
  align-items: stretch;
  margin: 18px 0 0 0;
}
.feature {
  background: var(--brand-secondary);
  border-radius: var(--radius-med);
  box-shadow: 0 4px 16px 0 rgba(227,153,42,0.09);
  padding: 28px 20px 20px 20px;
  flex: 1 1 248px;
  min-width: 220px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature:hover,
.feature:focus-within {
  box-shadow: 0 7px 22px 0 rgba(227,153,42,0.18);
  transform: translateY(-4px) scale(1.027);
}
.feature img {
  height: 40px;
  width: 40px;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

/* UL/OL STYLING FOR FEATURES */
.features ul, .services ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 14px 0 0 0;
  padding: 0;
}
.features ul li,
.services ul li {
  padding-left: 0;
  font-size: 1.07rem;
  color: #44362a;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: var(--radius-sm);
}
.features ul li img,
.services ul li img {
  width: 26px;
  height: 26px;
}

/* CTA SECTIONS */
.cta {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  border-radius: var(--radius-med);
  box-shadow: 0 4px 18px 0 rgba(4,69,104,0.09);
  padding: 40px 0;
  margin-bottom: 0; /* remove for last section */
}
.cta .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 19px;
  width: 100%;
}
.cta h2 {
  color: var(--brand-secondary);
  letter-spacing: -0.03em;
}
.cta.primary {
  background: var(--brand-accent);
  color: var(--brand-secondary);
}

/* TESTIMONIALS/REVIEWS */
.testimonials {
  background: var(--neutral);
  border-radius: var(--radius-med);
  padding: 30px 0;
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 28px;
  align-items: flex-start;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #5F3620;
}
.testimonial-card strong, .testimonial-card h3 {
  color: var(--brand-primary);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.testimonial-card span {
  color: #b98c3f;
  font-size: 0.97rem;
  margin-top: 6px;
}

/* TIPS & HIGHLIGHTS */
.tips-highlight, .info-highlight {
  background: #FFE7C3;
  border-radius: var(--radius-med);
  padding: 18px 18px 16px 18px;
  margin-top: 18px;
  color: #72522d;
  box-shadow: 0 0px 6px 0 rgba(227,153,42,0.08);
  border-left: 4px solid var(--brand-accent);
}
.tips-highlight h3, .info-highlight h3 { color: #ad7917; }

/* FOOTER */
footer {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  margin-top: 50px;
  padding: 40px 0 18px 0;
  box-shadow: 0 -1px 15px 0 rgba(4,69,104,0.04);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px 50px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a {
  color: var(--brand-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.94;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-accent);
  text-decoration: underline;
}
footer img {
  height: 34px;
  margin-bottom: 12px;
}
footer h3 {
  color: var(--brand-accent);
  margin-bottom: 6px;
  font-size: 1.1rem;
}
footer small {
  color: #E7D3B0;
  opacity: 0.8;
  font-size: 0.97rem;
}
footer .social-links {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
footer .social-links a img {
  width: 28px;
  height: 28px;
  border-radius: 30%;
  background: #FFE3B2;
  padding: 4px;
  transition: box-shadow 0.17s;
}
footer .social-links a:hover img {
  background: var(--brand-accent);
  box-shadow: 0 4px 18px 0 rgba(227,153,42,0.23);
}
footer div > div {
  margin-bottom: 6px;
}
footer div > div img {
  margin-right: 7px;
  vertical-align: middle;
}

/* VALUE & METHOD HIGHLIGHTS */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}
.values-grid > div {
  background: var(--warm-grey);
  border-radius: var(--radius-med);
  flex: 1 1 185px;
  min-width: 170px;
  max-width: 240px;
  padding: 18px 16px 13px 16px;
  box-shadow: 0 2px 10px 0 rgba(227,153,42,0.07);
  transition: box-shadow 0.14s;
}
.values-grid > div:hover {
  box-shadow: 0 7px 19px 0 rgba(227,153,42,0.18);
}

/* CONTACT DETAILS */
.contact-information {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 8px;
}
.contact-information div img {
  margin-right: 8px;
  vertical-align: middle;
  width: 22px;
}
.map-location {
  margin-top: 24px;
}

/* CERTIFICATION AND TEAM */
.certifications, .team-highlight, .methodology {
  background: #FFF6EF;
  border-radius: var(--radius-med);
  padding: 16px 14px 12px 14px;
  margin: 10px 0 18px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.certifications img {
  height: 30px; width: 30px;
  margin-right: 9px;
}

/* LEGAL SECTION TEXT */
.legal h2 {
  margin-top: 24px;
  font-size: 1.25rem;
}
.legal .text-section {
  background: #fff6ef;
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
}

/* FAQ */
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq li {
  background: #FFFCF8;
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  box-shadow: 0 2px 7px 0 rgba(227,153,42,0.06);
}
.faq strong {
  color: var(--brand-primary);
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}
.faq li div {
  color: #6a4934;
  font-size: 1rem;
}

/* ARTICLES/BLOG */
.articles article {
  background: var(--brand-secondary);
  border-radius: var(--radius-med);
  box-shadow: 0 2px 9px 0 rgba(4,69,104,0.06);
  padding: 24px 18px 14px 18px;
  margin-bottom: 18px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.articles article:hover {
  box-shadow: 0 7px 21px 0 rgba(227,153,42,0.11);
  transform: translateY(-2px) scale(1.018);
}
.articles h2 {
  font-size: 1.25rem;
  color: var(--brand-primary);
}
.articles article p {
  font-size: 1.05rem;
}

/* MODALS, HIGHLIGHTS, MESSAGES */
.confirmation, .next-steps {
  background: #FFF8ED;
  border-radius: var(--radius-med);
  padding: 20px 16px 16px 16px;
  box-shadow: 0 2px 10px 0 rgba(227,153,42,0.07);
}
.next-steps ul {
  margin-top: 8px;
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.next-steps a {
  color: var(--brand-accent);
}

/* MOBILE NAVIGATION --------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4,69,104,0.93);
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 275ms cubic-bezier(.9,.01,.32,1.09);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: var(--brand-accent);
  font-size: 2.2rem;
  border-radius: 50%;
  align-self: flex-end;
  margin: 22px 34px 4px 0;
  padding: 2px 10px 0 10px;
  cursor: pointer;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(227,153,42,0.18);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 42px 0 0 40px;
}
.mobile-nav a {
  color: var(--brand-secondary);
  font-family: var(--font-display);
  font-size: 1.22rem;
  padding: 9px 0 9px 4px;
  border-radius: var(--radius-sm);
  min-width: 180px;
  transition: background 0.17s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.mobile-menu {
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Hamburger for mobile - visible only on mobile */
@media (max-width: 1024px) {
  header nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: var(--brand-accent);
    color: var(--brand-primary);
    font-size: 1.85rem;
    border-radius: 50%;
    padding: 7px 14px;
    margin-left: 8px;
    margin-right: -8px;
    box-shadow: 0 2px 6px 0 rgba(227,153,42,0.13);
    z-index: 1002;
    cursor: pointer;
    transition: background 0.17s, color 0.13s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: var(--brand-primary);
    color: var(--brand-accent);
  }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* COOKIE CONSENT BANNER --------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
  width: 96vw;
  max-width: 410px;
  z-index: 3200;
  background: #f8e1c2;
  border: 2px solid var(--brand-accent);
  box-shadow: 0 2px 22px rgba(227,153,42,0.14);
  border-radius: var(--radius);
  padding: 22px 20px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  font-size: 1rem;
  color: #534022;
  pointer-events: none;
  transition: transform 350ms cubic-bezier(.96,-0.06,.16,1.04), opacity 250ms cubic-bezier(.69,-0.09,.56,1.2);
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.cookie-banner strong {
  color: var(--brand-primary);
  display: block;
  margin-bottom: 8px;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-buttons button {
  min-width: 0;
  font-family: var(--font-display);
  border-radius: 30px;
  background: var(--brand-accent);
  color: var(--brand-secondary);
  border: none;
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 6px 0 rgba(227,153,42,0.08);
  transition: background 0.16s, color 0.13s;
  cursor: pointer;
}
.cookie-buttons button:hover, .cookie-buttons button:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
}
.cookie-buttons .cookie-settings {
  background: var(--brand-secondary);
  color: var(--brand-accent);
  border: 1.5px solid var(--brand-accent);
}
.cookie-buttons .cookie-settings:hover, .cookie-buttons .cookie-settings:focus {
  background: #FFF6EF;
}

/* COOKIE PREFS MODAL */
.cookie-modal {
  position: fixed;
  z-index: 3400;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(4,69,104,0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #FFF6EF;
  border-radius: var(--radius);
  width: 95vw;
  max-width: 390px;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 7px 38px 0 rgba(4,69,104,0.14);
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 21px;
  font-size: 2rem;
  background: none;
  color: var(--brand-accent);
  border-radius: 50%;
  padding: 2px 7px;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: rgba(227,153,42,0.11); 
}
.cookie-modal h3 {
  color: var(--brand-primary);
}
.cookie-category-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 7px;
  border-radius: var(--radius-sm);
  background: #fdf4eb;
  margin-bottom: 5px;
}
.cookie-category-row label {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1rem;
}
.cookie-category-row .toggle {
  background: var(--brand-accent);
  border-radius: 15px;
  width: 48px; height: 25px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-category-row .toggle input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-category-row .toggle span {
  position: absolute;
  left: 3px; top: 3px;
  width: 19px; height: 19px;
  background: var(--brand-secondary);
  border-radius: 50%;
  box-shadow: 0 0 3px 0 rgba(34,28,23,0.08);
  transition: left 0.16s;
}
.cookie-category-row .toggle input[type="checkbox"]:checked + span {
  left: 24px;
  background: var(--brand-primary);
}
.cookie-category-row .always-on {
  color: #7d6b5d;
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 9px;
}
.cookie-modal-save {
  background: var(--brand-accent);
  color: var(--brand-secondary);
  border-radius: 30px;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 24px;
  box-shadow: 0 2px 6px 0 rgba(227,153,42,0.08);
  transition: background 0.16s, color 0.13s;
  cursor: pointer;
  margin-top: 14px;
}
.cookie-modal-save:hover, .cookie-modal-save:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
}

/* RESPONSIVE DESIGN -------------------------------------------------- */
@media (max-width: 1000px) {
  .container { max-width: 98vw; }
  .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  footer .content-wrapper {
    gap: 18px;
  }
  .feature-grid, .values-grid {
    flex-direction: column;
    gap: 18px !important;
  }
  .card-container, .content-grid, .testimonial-card, .services ul {
    flex-direction: column !important;
  }
}
@media (max-width: 768px) {
  html { font-size: 98%; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.23rem; }
  .container { padding-left: 11px; padding-right: 11px; }
  .section { margin-bottom: 38px; padding: 24px 6px; }
  header .container {
    gap: 8px;
    padding: 11px 7px;
  }
  .hero { padding: 33px 0 28px 0; }
  .features .feature-grid, .values-grid {
    gap: 10px !important;
  }
  .testimonial-card {
    padding: 15px 7px 16px 13px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.27rem; }
  h2 { font-size: 1.08rem; }
  .hero .content-wrapper, .cta .content-wrapper {
    max-width: 98vw;
    padding-left: 0; padding-right: 0;
  }
}
@media (max-width: 550px) {
  .container { padding-left: 0; padding-right: 0; }
  .footer .container, .content-wrapper {
    padding-left: 0; padding-right: 0;
  }
  .feature { max-width: 97vw; min-width: 0; padding: 17px 7px; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.cta.primary, .feature, .testimonial-card, .card, .articles article {
  transition: box-shadow 0.18s, background 0.2s, color 0.17s, transform 0.15s;
}
nav a, .mobile-nav a, .cta.primary, button, .cookie-modal-save {
  transition: background 0.19s, color 0.17s, transform 0.13s;
}

/* ENSURE ADEQUATE SPACING BETWEEN CARDS AND SECTIONS */
.section, .card, .feature, .testimonial-card, .articles article {
  margin-bottom: 20px;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-accent { color: var(--brand-accent); }
.d-flex { display: flex; align-items: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.rounded { border-radius: var(--radius); }

/* END OF STYLE.CSS */
