/* ==================================================
   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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F7F5F2;
  color: #34495E;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: #34495E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #E67E22;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
}
strong { font-weight: 700; }
img {
  max-width: 100%;
  display: block;
}
button, .btn-primary, .btn-secondary {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
input, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
}

/* ==================================================
   CUSTOM PROPERTIES & BRAND COLORS (with fallbacks)
================================================== */
:root {
  --primary: #34495E;
  --secondary: #E67E22;
  --accent: #F7F5F2;
  --lighter-gray: #F2F6FA;
  --light-gray: #E6EAED;
  --mid-gray: #A8B4BF;
  --dark-gray: #232F3E;
  --btn-radius: 8px;
  --card-radius: 12px;
  --shadow-light: 0 2px 16px 0 rgba(44, 62, 80, 0.07);
  --shadow-hover: 0 4px 20px 0 rgba(44, 62, 80, 0.13);
  --transition-fast: 0.15s;
}

/* ==================================================
   TYPOGRAPHY
================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Open Sans', Arial, sans-serif;
  color: #232F3E;
  letter-spacing: 0.01em;
  line-height: 1.22;
}
h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 14px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }

p, ul, ol, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #34495E;
}
p { margin-bottom: 18px; }

/* Lead (for hero, subtitle, intro text) */
.lead, .hero p {
  font-size: 1.22rem;
  color: #566573;
  margin-bottom: 18px;
}

/* ==================================================
   CONTAINERS
================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

/* ==================================================
   HEADER & NAVIGATION
================================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(52,73,94,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Raleway', Arial, sans-serif;
  color: #34495E;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 0;
  font-size: 1rem;
  position: relative;
  transition: color var(--transition-fast);
}
.main-nav a:hover,
.main-nav a:focus {
  color: #E67E22;
}
.cta-header {
  display: flex;
  gap: 12px;
}

/* HEADER BUTTONS */
.btn-primary, .btn-secondary {
  border-radius: var(--btn-radius);
  padding: 11px 26px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1.07rem;
  outline: none;
  box-shadow: 0 1px 2px 0 rgba(52,73,94,0.06);
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: #232F3E;
  color: #fff;
  box-shadow: var(--shadow-hover);
  border-color: #34495E;
  text-decoration: none;
}
.btn-secondary {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow-hover);
}

/* ==================================================
   MOBILE NAVIGATION
================================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  margin-left: 12px;
  line-height: 1;
  z-index: 2001;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  color: var(--secondary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 86vw;
  max-width: 380px;
  height: 100vh;
  box-shadow: 3px 0 22px 0 rgba(44,62,80,0.27);
  transform: translateX(-110%);
  z-index: 1999;
  transition: transform 0.28s cubic-bezier(0.77,0.2,0.05,1.0);
  padding: 32px 24px 24px 22px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--dark-gray);
  background: none;
  border: none;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #f1f3f4;
  transition: color var(--transition-fast);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: #F7F5F2;
}

/* Dim overlay for mobile menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(52,73,94,0.45);
  z-index: 1998;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
  display: none;
}
.mobile-menu.active ~ .mobile-menu-overlay {
  display: block;
}

/* RESPONSIVE Navigation */
@media (max-width: 980px) {
  .main-nav,
  .cta-header {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* ==================================================
   HERO SECTION
================================================== */
.hero {
  background: linear-gradient(91deg, #eaf0f6 0%, #fff 100%);
  border-bottom: 2px solid var(--light-gray);
  width: 100%;
  margin-bottom: 60px;
  padding: 54px 0 40px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  font-size: 2.1rem;
  color: var(--primary);
}
@media (min-width: 700px) {
  .hero h1 { font-size: 2.7rem; }
}

/* ==================================================
   SECTIONS, CARDS, FLEX LAYOUTS
================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-light);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: var(--card-radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-light);
  padding: 28px 24px;
  flex: 1 1 250px;
  min-width: 240px;
  position: relative;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.card:hover,
.card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.02);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7F5F2;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(44,62,80,0.05);
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 240px;
  color: #232F3E;
  transition: box-shadow 0.2s;
}
.testimonial-card strong {
  color: var(--primary);
  font-weight: bold;
  display: block;
  margin-left: 6px;
  margin-top: 8px;
  font-size: 1.02rem;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: var(--shadow-hover);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 12px;
}
.feature {
  flex: 1 1 210px;
  min-width: 210px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-light);
  padding: 20px 15px 22px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
  border-left: 6px solid #E7EDEF;
}
.feature img {
  height: 38px;
  width: 38px;
  margin-bottom: 10px;
}
.feature:hover,
.feature:focus-within {
  box-shadow: var(--shadow-hover);
  border-left: 6px solid var(--secondary);
  transform: translateY(-2px) scale(1.01);
}
.feature h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.feature p {
  color: #566573;
  font-size: 0.99rem;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.team-member {
  background: #F7F5F2;
  border-radius: var(--card-radius);
  box-shadow: 0 1px 9px 0 rgba(52,73,94,0.06);
  flex: 1 1 220px;
  min-width: 200px;
  padding: 20px 16px;
  margin-bottom: 20px;
}
.team-member h3 {
  color: var(--secondary);
  margin-bottom: 7px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 8px;
  padding: 14px 11px;
  font-size: 1.01rem;
  box-shadow: 0 1px 7px 0 rgba(52,73,94,0.03);
}
.feature-list img {
  height: 32px;
  width: 32px;
}

/***** Section spacing *****/
section, .section {
  margin-bottom: 60px;
  padding-top: 0;
  padding-bottom: 0;
}

/***** Thank you page icons *****/
.thank-you-icons {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin: 26px 0;
  justify-content: flex-start;
  align-items: center;
}
.next-steps {
  margin-top: 35px;
}
.next-steps h2 {
  font-size: 1.33rem;
  margin-bottom: 12px;
}
.next-steps ul {
  padding-left: 14px;
}

/* FAQ & Steps */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 20px;
}
.faq-item {
  background: #F7F5F2;
  padding: 18px 16px;
  border-radius: 10px;
  border-left: 4px solid #E67E22;
  box-shadow: 0 1px 6px 0 rgba(44,62,80,0.04);
}
.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 18px;
  padding-left: 0;
}
.step-list li {
  background: #F7F5F2;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(44,62,80,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 14px;
  margin-bottom: 10px;
  border-left: 5px solid var(--primary);
}
.step-list li img {
  height: 30px;
  width: 30px;
}
.step-list li strong {
  color: var(--primary);
}

/***** Contacts *****/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-details strong {
  min-width: 85px;
  font-weight: 600;
}
.map-embed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F7F5F2;
  border-radius: 8px;
  margin-top: 12px;
  padding: 20px 16px;
  gap: 10px;
}
.map-embed img {
  height: 90px;
  width: auto;
}

/***** Section heading / divider fix *****/
.container > .content-wrapper > h2 {
  margin-top: 8px;
}

/* ==================================================
   FOOTER
================================================== */
footer {
  background: var(--primary);
  color: #fff;
  width: 100%;
  padding: 40px 0 26px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.91;
  font-size: 1rem;
  transition: opacity 0.2s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E67E22;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.98rem;
}
.footer-contact div {
  display: flex;
  gap: 7px;
  align-items: center;
}
.footer-contact img {
  height: 24px;
  width: 24px;
  opacity: 0.72;
}
.footer-logo {
  margin-top: 10px;
  margin-bottom: 7px;
}
.footer-logo img {
  height: 48px;
}
.footer-copy {
  text-align: left;
  width: 100%;
  font-size: 0.98rem;
  opacity: 0.75;
  margin-top: 12px;
}

/* ==================================================
   COOKIE CONSENT BANNER & MODAL
================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  color: #34495E;
  box-shadow: 0 -2px 12px 0 rgba(44,62,80,0.09);
  z-index: 3001;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  transition: transform 0.4s, opacity 0.9s;
  font-size: 1.03rem;
  border-radius: 18px 18px 0 0;
  opacity: 0.98;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cookie-btn-accept {
  background: var(--secondary);
  color: #fff;
  border-radius: var(--btn-radius);
  font-weight: 700;
  padding: 9px 19px;
  border: 2px solid var(--secondary);
  transition: background 0.18s, color 0.18s;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #ba610f;
  border-color: #ba610f;
}
.cookie-btn-reject {
  background: #fff;
  color: var(--primary);
  border-radius: var(--btn-radius);
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: 9px 16px;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--lighter-gray);
}
.cookie-btn-settings {
  background: #fff;
  color: var(--secondary);
  font-weight: 600;
  border-radius: var(--btn-radius);
  border: 2px solid var(--secondary);
  padding: 9px 16px;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #FFF0DF;
}

/* Cookie preferences modal */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0;
  width: 100vw;
  height: 100vh;
  background: rgba(52,73,94,0.32);
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation: fadein-cookie 0.15s;
}
@keyframes fadein-cookie {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #232F3E;
  border-radius: 14px;
  box-shadow: 0 4px 44px 0 rgba(44,62,80,0.16);
  max-width: 432px;
  width: 92vw;
  padding: 34px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 4002;
  animation: slideModalIn 0.16s cubic-bezier(.7,.2,.3,1);
}
@keyframes slideModalIn {
  0% { transform: translateY(50px) scale(0.96); opacity: 0;}
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f2f3f7;
  padding: 14px 11px;
  border-radius: 8px;
  font-size: 1.05rem;
}
.cookie-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  background: #E6EAED;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-toggle[data-checked="true"] {
  background: var(--secondary);
  justify-content: flex-end;
}
.cookie-toggle .toggle-circle {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px 0 rgba(44,62,80,0.07);
  transition: transform 0.15s;
}
.cookie-category[data-essential] .cookie-toggle {
  opacity: 0.65;
  pointer-events: none;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 13px;
  margin-top: 12px;
}
.cookie-modal .modal-btn-accept {
  background: var(--secondary);
  color: #fff;
  border-radius: var(--btn-radius);
  font-weight: 700;
  padding: 11px 20px;
  border: 2px solid var(--secondary);
}
.cookie-modal .modal-btn-reject {
  background: #fff;
  color: var(--primary);
  border-radius: var(--btn-radius);
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: 11px 18px;
}
.cookie-modal .modal-btn-close {
  background: none;
  color: var(--primary);
  text-decoration: underline;
  font-size: 1rem;
  border: none;
  margin-left: auto;
}
.cookie-modal .modal-btn-close:hover,
.cookie-modal .modal-btn-close:focus {
  color: var(--secondary);
}

/* ==================================================
   MEDIA QUERIES: RESPONSIVE DESIGN
================================================== */
@media (max-width: 1050px) {
  .container {
    max-width: 940px;
  }
  .feature-grid,
  .testimonial-cards,
  .team-list,
  .card-container,
  .content-grid {
    gap: 16px;
  }
}
@media (max-width: 850px) {
  .container {
    max-width: 740px;
  }
  .feature-grid,
  .testimonial-cards,
  .team-list,
  .card-container,
  .content-grid {
    gap: 12px;
  }
}
/* HERO stack on mobile */
@media (max-width: 670px) {
  .hero .container {
    padding: 0 8px;
  }
  .hero .content-wrapper {
    padding: 0 0;
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 690px) {
  .footer-contact {
    flex-direction: column;
    gap: 11px;
  }
  .feature-list li {
    font-size: 0.98rem;
    padding: 11px 7px;
  }
  .feature {
    padding: 14px 9px 14px 9px;
  }
}
@media (max-width: 750px) {
  .feature-grid,
  .testimonial-cards,
  .team-list,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature,
  .testimonial-card,
  .team-member,
  .card {
    min-width: unset;
    width: 100%;
  }
  .footer-logo {
    align-self: flex-start;
  }
}
@media (max-width: 550px) {
  .container {
    padding: 0 6px;
  }
  .section {
    padding: 24px 7px;
  }
  .hero {
    padding: 24px 0 14px 0;
  }
  .btn-primary, .btn-secondary {
    padding: 9px 9px;
    font-size: 0.99rem;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.16rem;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ==================================================
   ACCESSIBILITY & EFFECTS
================================================== */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #E67E22;
  outline-offset: 2px;
}

::-webkit-input-placeholder { color: #A8B4BF; opacity:1; }
::-moz-placeholder { color: #A8B4BF; opacity:1; }
:-ms-input-placeholder { color: #A8B4BF; opacity:1; }
::placeholder { color: #A8B4BF; opacity:1; }

body {
  transition: background 0.23s;
}

/***** link underline animation *****/
a:not(.btn-primary):not(.btn-secondary) {
  position: relative;
}
a:not(.btn-primary):not(.btn-secondary):after {
  display: block;
  content: '';
  border-bottom: 2px solid var(--secondary);
  transform: scaleX(0);
  transition: transform 0.16s linear;
  transform-origin: 0 50%;
}
a:not(.btn-primary):not(.btn-secondary):hover:after,
a:not(.btn-primary):not(.btn-secondary):focus:after {
    transform: scaleX(1);
}

/***** micro-interaction: card hover effect *****/
.card, .feature, .testimonial-card, .team-member {
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.card:hover, .feature:hover, .testimonial-card:hover, .team-member:hover {
  box-shadow: 0 5px 25px 0 rgba(52,73,94,0.14);
  transform: translateY(-4px) scale(1.02);
}


/* ==================================================
   UTILITIES & MISC
================================================== */
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.text-center { text-align: center !important; }
.hide { display: none !important; }
.nowrap { white-space: nowrap; }

/* Required classes from pattern instructions */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/***** END *****/