/* ===================
   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, menu, 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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; border-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; }

/* ========================
   Brand Colors and Variables
   ======================== */
:root {
  --primary: #003366;
  --secondary: #29A19C;
  --accent: #F6F7F9;
  --neutral-900: #111826;
  --neutral-700: #475569;
  --neutral-500: #94A3B8;
  --white: #ffffff;
  --shadow-1: 0 2px 12px 0 rgba(0,20,50,0.06);
  --radius-md: 10px;
  --radius-lg: 20px;
  --transition: 0.2s cubic-bezier(.5,.1,.2,1);
}

/* ========================
   Fonts
   ======================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--neutral-900);
  background: var(--accent);
  min-height: 100vh;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 600; }
p, ul, ol { font-size: 1rem; color: var(--neutral-900); }
strong { font-weight: 700; }
em { font-style: italic; }

/* ========================
   Layout - Containers and Sections
   ======================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  /* No grid/columns */
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 16px;
  }
}

/* ========================
   Header & Navigation
   ======================== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-500);
  box-shadow: 0 1px 8px 0 rgba(0,0,20,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 0;
  transition: color var(--transition);
}
header nav a:hover,
header nav a:focus {
  color: var(--secondary);
}
.cta-header {
  background: var(--secondary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  margin-left: 12px;
  transition: background var(--transition), box-shadow var(--transition);
}
.cta-header:hover,
.cta-header:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 24px 0 rgba(0,30,60,0.12);
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--white);
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  margin-left: 12px;
  transition: background var(--transition);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
}

@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .cta-header {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===========================
   Mobile Menu Styles (OFFCANVAS)
   =========================== */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: var(--white);
  box-shadow: 0 0 0 100vw rgba(0,0,0,0.14);
  z-index: 3000;
  transform: translateX(-110%);
  transition: transform 0.38s cubic-bezier(.64,.04,.35,1), opacity 0.22s;
  opacity: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: var(--secondary);
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
  padding: 8px 16px;
  transition: background var(--transition);
  box-shadow: var(--shadow-1);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 38px;
  padding: 0 34px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 18px 0;
  border-bottom: 1px solid var(--accent);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--secondary);
  background: var(--accent);
  border-radius: var(--radius-md);
  padding-left: 8px;
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ========================
   HERO Section and CTA
   ======================== */
.hero {
  background: linear-gradient(135deg, var(--accent) 75%, var(--secondary) 200%);
  padding: 64px 0 44px 0;
  margin-bottom: 44px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 630px;
  padding: 0 10px;
}
.hero h1 {
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 28px;
}
.hero p {
  font-size: 1.3rem;
  color: var(--neutral-700);
  margin-bottom: 32px;
}
.cta-main {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  padding: 15px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  margin-top: 12px;
  text-align: center;
  border: 2px solid transparent;
}
.cta-main:hover, .cta-main:focus {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 6px 28px 0 rgba(0,30,60,0.13);
  transform: translateY(-2px) scale(1.01);
  border-color: var(--secondary);
}
.cta-secondary {
  display: inline-block;
  color: var(--primary);
  background: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 30px;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary);
  margin-top: 16px;
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: var(--primary);
  color: var(--white);
}

.cta-block {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  min-height: 130px;
  margin: 60px auto 0 auto;
  padding: 40px 0;
  text-align: center;
  box-shadow: var(--shadow-1);
}
.cta-block h2 {
  color: var(--white);
  margin-bottom: 18px;
}
.cta-block .cta-main {
  background: var(--secondary);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-1);
}
.cta-block .cta-main:hover,
.cta-block .cta-main:focus {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--secondary);
}

/* ========================
   Features & Services Grid
   ======================== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  padding: 32px 24px 28px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-item img {
  width: 42px; height: 42px;
}
.feature-item h3 {
  color: var(--primary); font-size: 1.13rem;
}
.feature-item p {
  color: var(--neutral-700); font-size: 0.97rem;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 22px 0 rgba(0,30,60,0.08);
  transform: translateY(-3px);
}
@media (max-width: 900px) {
  .features .feature-grid { gap: 16px; }
  .feature-item { padding: 18px 12px; min-width: 160px; }
}
@media (max-width: 600px) {
  .features .feature-grid { flex-direction: column; gap: 18px; }
  .feature-item { width: 100%; min-width: 0; }
}

/* ========================
   Service Cards (Homepage)
   ======================== */
.service-cards,
.detailed-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 26px 0 18px 0;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  flex: 1 1 calc(20% - 24px);
  min-width: 220px;
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 6px 22px 0 rgba(0,30,60,0.10);
  transform: translateY(-2px);
}
.service-card h3 {
  color: var(--primary);
  font-size: 1.17rem;
  margin-bottom: 10px;
  min-height: 32px;
}
.service-card p {
  font-size: 0.98rem;
  color: var(--neutral-700);
  margin-bottom: 18px;
}
.service-card span {
  font-weight: 600;
  color: var(--secondary);
  font-size: 1rem;
}
@media (max-width: 900px) {
  .service-cards { gap: 12px; }
  .service-card { min-width: 170px; padding: 14px 10px 14px 14px; }
  .service-card h3 { font-size: 1.04rem; }
}
@media (max-width: 600px) {
  .service-cards, .detailed-service-list {
    flex-direction: column;
    gap: 18px;
  }
  .service-card { width: 100%; min-width: 0; }
}
@media (min-width: 1200px) {
  .service-card { max-width: 250px; }
}

/* ========================
   Testimonials & Reviews
   ======================== */
.testimonials {
  background: var(--accent);
  margin-bottom: 60px;
  padding: 40px 20px 44px 20px;
}
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  margin-bottom: 18px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  flex: 1 1 290px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--neutral-900);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 10px 36px 0 rgba(0,60,120,0.10);
  transform: translateY(-4px);
}
.testimonial-card p {
  font-size: 1.07rem;
  font-style: italic;
  color: var(--primary);
}
.testimonial-card span {
  color: var(--neutral-700);
  font-size: 0.98rem;
  margin-left: 8px;
}
.rating-summary {
  margin-top: 14px; color: var(--neutral-900); font-size: 1rem;
}
.rating-summary strong { color: var(--secondary); font-size: 1.06em; }
.rating-summary em { color: var(--neutral-700); }
@media (max-width: 750px) {
  .testimonial-slider, .testimonial-list { flex-direction: column; gap: 20px; }
  .testimonial-card { width: 100%; min-width: 0; }
}

/* ========================
   Team Section/Success Metrics/Contact Details
   ======================== */
.team-overview,
.success-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  padding: 24px 22px;
  margin-bottom: 26px;
}
.team-values {
  background: var(--accent);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 18px;
}
.contact-details {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  padding: 22px 18px;
  margin-bottom: 22px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
}
.contact-details img {
  width: 24px; height: 24px; opacity: 0.85;
}

/* ========================
   Tables (Course Comparison)
   ======================== */
table {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  margin: 22px 0 32px 0;
  overflow: hidden;
}
thead {
  background: var(--primary);
  color: var(--white);
}
th, td {
  padding: 16px 12px;
  text-align: left;
  font-size: 1rem;
}
th { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }
tbody tr:nth-child(even) {
  background: var(--accent);
}
tbody tr:hover {
  background: var(--secondary);
  color: var(--white);
  transition: background var(--transition), color var(--transition);
}
@media (max-width: 700px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead { display: none; }
  tr { margin-bottom: 14px; }
  td { padding: 12px 6px; }
}

/* ========================
   Footer
   ======================== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 0 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  padding-bottom: 12px;
}
.footer-top-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding-bottom: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 220px;
}
.footer-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.92;
  padding-bottom: 4px;
  transition: color var(--transition), opacity var(--transition);
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--secondary);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 18px;
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.85;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-left: 8px;
}
.footer-social a img {
  width: 32px; height: 32px;
  transition: filter var(--transition), transform var(--transition);
  filter: grayscale(40%);
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: grayscale(5%) brightness(110%);
  transform: translateY(-2px) scale(1.1);
}
.footer-bottom-row {
  text-align: center;
  padding: 18px 0 2px 0;
  color: var(--neutral-500);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
@media (max-width: 1000px) {
  .footer-top-row { flex-direction: column; gap: 26px; align-items: flex-start; }
  .footer-social { margin-left: 0; }
}

/* ========================
   Maps and Embeds
   ======================== */
.map-embed {
  background: var(--accent);
  border-radius: var(--radius-md);
  margin: 18px 0 5px 0;
  padding: 13px 16px;
  font-size: 0.97rem;
  color: var(--neutral-700);
}

/* ========================
   Success Metrics & Lists
   ======================== */
ul li, .success-metrics ul li {
  padding-left: 1.3em;
  position: relative;
  margin-bottom: 5px;
  color: var(--neutral-700);
  font-size: 0.98rem;
}
ul li:before,
.success-metrics ul li:before {
  content: '\2022';
  color: var(--secondary);
  font-size: 1.23em;
  position: absolute;
  left: 2px;
  top: 1px;
}


/* ========================
   Utility Spacing Classes
   ======================== */
.mb-20 { margin-bottom: 20px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.pt-20 { padding-top: 20px !important; }

/* ========================
   Cookie Consent Banner & Modal
   ======================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: var(--white);
  color: var(--neutral-900);
  box-shadow: 0 -2px 20px 0 rgba(0,20,40,0.11);
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 22px 38px 22px 22px;
  font-size: 1rem;
  transition: transform 0.3s, opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 320px;
  min-width: 180px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  background: var(--secondary);
  color: var(--white);
  padding: 11px 26px;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  margin-left: 0;
  transition: background var(--transition);
}
.cookie-btn.reject {
  background: var(--primary);
}
.cookie-btn.settings {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--primary);
  color: var(--white);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #c61f1f;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 20px 10px;
    font-size: 0.98rem;
    align-items: stretch;
  }
  .cookie-banner .cookie-actions { justify-content: flex-end; }
}

.cookie-modal-backdrop {
  position: fixed;
  z-index: 5050;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,36,0.12);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.cookie-modal-backdrop.active { display: flex; }

.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 48px 0 rgba(0,0,30,0.12);
  max-width: 420px;
  width: 98%;
  padding: 36px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookiePopIn 0.32s cubic-bezier(.64, .05, .3, .99);
}
@keyframes cookiePopIn {
  0% { transform: translateY(40px) scale(0.9); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary); margin-bottom: 12px; font-size: 1.41rem;
}
.cookie-modal label {
  display: flex; align-items: center; gap: 16px;
  font-size: 1.06rem; margin: 12px 0;
}
.cookie-category-toggle {
  width: 38px; height: 22px;
  background: var(--neutral-500);
  border-radius: 14px;
  position: relative;
  transition: background 0.2s;
}
.cookie-category-toggle input {
  opacity: 0; width: 0; height: 0;
}
.cookie-category-toggle .slider {
  position: absolute; left: 2px; top: 2px;
  height: 18px; width: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.19s, background 0.19s;
}
.cookie-category-toggle input:checked + .slider {
  background: var(--secondary);
  transform: translateX(16px);
}
/* Essential cookies always enabled */
.cookie-modal .cookie-category-toggle[aria-disabled='true'] {
  background: var(--secondary);
  opacity: 0.75;
}
.cookie-modal .cookie-category-toggle[aria-disabled='true'] input + .slider {
  background: var(--white);
}
.cookie-modal .cookie-modal-actions {
  display: flex; flex-direction: row; gap: 14px; justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute; top: 17px; right: 20px;
  font-size: 1.6rem;
  background: transparent;
  color: var(--secondary);
  border: none;
  padding: 5px;
  line-height: 1;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: var(--primary);
}
@media (max-width: 500px) {
  .cookie-modal { max-width: 99vw; padding: 16px 6vw 19px 6vw; }
}

/* ========================
   Animations
   ======================== */
.card, .feature-item, .testimonial-card, .service-card {
  transition: box-shadow 0.18s cubic-bezier(.56,.05,.22,1), transform 0.18s cubic-bezier(.56,.05,.22,1);
}
.cta-main,
.cta-secondary,
button, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

/* ========================
   General Responsive Adjustments
   ======================== */
@media (max-width: 768px) {
  /* .text-image-section, always flex: column */
  .text-image-section { flex-direction: column !important; gap: 20px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
}

/* ========================
   Accessibility Focus Styles
   ======================== */
a:focus, button:focus, .cta-main:focus, .cta-secondary:focus, .cookie-btn:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 2px;
}

/* ========================
   BRAND PERSONALITY Touches
   ======================== */
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 10px; }
::-webkit-scrollbar-track { background: var(--accent); }
::-webkit-scrollbar { width: 10px; }

/* ========================
   Utility Classes
   ======================== */
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { display: flex; flex-direction: column; }

/* ========================
   Mandatory Spacing/Patterns
   ======================== */
.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;
}
/* Ensure no overlapping and correct margin between all cards/sections */
.section, .card, .card-container .card, .feature-item, .service-card, .testimonial-card, .team-overview, .success-metrics, .contact-details {
  margin-bottom: 20px;
}

/* ========================
   END OF STYLE
   ======================== */
