/*----------------------
  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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #e9eaf0;
  color: #22263d;
  overscroll-behavior: none;
}
l*,
:before,
:after {
  box-sizing: border-box;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; border: 0; }
button, input, select, textarea { font-family: inherit; font-size: 100%; color: inherit; }
button { background: none; border: none; cursor: pointer; }

/*----------------------
  BRAND FONTS
----------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #e9eaf0;
  color: #22263d;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #22263d;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s cubic-bezier(.52,1.56,.56,1) 0.2s backwards;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
strong, b {
  font-weight: 700;
  color: #f9662b;
}
p {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.text-section p, .text-section ul, .text-section ol {
  margin-bottom: 18px;
}

/*----------------------
  LAYOUT CONTAINERS & CLASSES
----------------------*/
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 18px 0 rgba(34,38,61,0.07);
}
section.hero {
  background: #fff5f2 url('../assets/bg-hero-pat.svg') right bottom no-repeat;
  background-size: auto 80%;
  margin-bottom: 60px;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 36px 0 rgba(249,102,43,0.12);
  animation: fadeIn 1.2s;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 9px 0 rgba(34,38,61,0.08);
  transition: transform 0.23s cubic-bezier(.65,.04,.35,1), box-shadow 0.23s;
  position: relative;
  min-width: 250px;
  max-width: 350px;
}
.card:hover {
  transform: translateY(-6px) scale(1.025) rotate(-1deg);
  box-shadow: 0 6px 32px 0 rgba(249,102,43,0.13);
}
.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;
  background: #fff0e9;
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 7px 0 rgba(34,38,61,0.07);
  color: #22263d;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 3px 13px 0 rgba(249,102,43,0.16);
  transform: scale(1.019) rotate(0.5deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  padding: 20px 16px;
  width: 100%;
  min-width: 220px;
  max-width: 280px;
  box-shadow: 0 2px 9px 0 rgba(34,38,61,0.11);
  margin-bottom: 20px;
  pointer-events: auto;
  transition: box-shadow 0.20s, transform 0.20s;
}
.feature-item img {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: #ffe4d3;
  padding: 7px;
  margin-bottom: 7px;
}
.feature-item:hover {
  box-shadow: 0 7px 25px 0 rgba(249,102,43,0.15);
  transform: scale(1.03) rotate(-1deg);
  background: #fff7f0;
}
.feature-item h3 {
  font-size: 1.1rem;
  color: #22263d;
  font-weight: bold;
}
.feature-item p {
  font-size: 1rem;
  color: #35385b;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Sections specific adjustments */
.features {
  background: #fff7f0;
  border-radius: 28px;
}

.cta-home, .cta-after-services, .cta-after-features {
  background: #f9662b;
  color: #fff;
  border-radius: 26px;
  box-shadow: 0 3px 13px 0 rgba(249,102,43,0.11);
}
.cta-home .btn-primary, .cta-after-services .btn-primary, .cta-after-features .btn-primary {
  background: #fff;
  color: #f9662b;
  border: 2px solid #fff;
  font-weight: 800;
}
.cta-home h2, .cta-after-services h2, .cta-after-features h2 {
  color: #fff;
}

.alert-info {
  background: #ffe8e1;
  border-left: 5px solid #f9662b;
  padding: 16px 20px;
  font-size: 1rem;
  border-radius: 10px;
  margin: 22px 0;
  color: #22263d;
}

.pricing-info {
  background: #fff0e9;
  border-radius: 17px;
  padding: 14px 20px;
  margin-top: 22px;
  font-size: 1rem;
}

.team-members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}
.team-member {
  background: #fff;
  border-radius: 19px;
  padding: 18px 16px;
  box-shadow: 0 2px 9px 0 rgba(34,38,61,0.10);
  min-width: 220px;
  max-width: 270px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
.team-member h3 {
  color: #f9662b;
  font-size: 1.09rem;
  margin-bottom: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 10px 0;
}
.footer-nav a {
  color: #f9662b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
}
.footer-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #f9662b;
  transition: width 0.2s;
  margin-top: 2px;
}
.footer-nav a:hover:after {
  width: 100%;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.93rem;
  color: #35385b;
  margin-top: 16px;
}
footer {
  margin-top: 72px;
  background: #22263d;
  color: #fff;
  padding: 36px 0 24px 0;
  border-radius: 36px 36px 0 0;
}
footer .footer-info img {
  height: 32px;
  width: auto;
  margin-bottom: 3px;
}

/*----------------------
HEADER & NAVIGATION
----------------------*/
header {
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(34,38,61,0.04);
  border-radius: 0 0 32px 32px;
  padding: 24px 0 0 0;
  margin-bottom: 32px;
  position: sticky;
  top: 0;
  z-index: 98;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img {
  height: 48px;
  width: auto;
  vertical-align: middle;
  transition: filter 0.14s;
}
.logo img:hover {
  filter: brightness(1.15) hue-rotate(-10deg);
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #22263d;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  position: relative;
  padding: 6px 4px 4px 4px;
  border-radius: 7px;
  transition: color 0.17s, background 0.17s;
}
.main-nav a:hover, .main-nav a:focus-visible {
  color: #f9662b;
  background: #ffeede;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  border-radius: 14px;
  background: #22263d;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  padding: 13px 28px;
  cursor: pointer;
  box-shadow: 0 2px 7px 0 rgba(34,38,61,0.07);
  transition: background 0.17s, color 0.15s, box-shadow 0.18s, transform 0.18s;
  margin-left: 16px;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}
.btn-primary:active {
  transform: scale(.95);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #f9662b;
  color: #fff;
  box-shadow: 0 7px 18px 0 rgba(249,102,43,0.16);
  outline: none;
}
.btn-primary:focus {
  outline: 2px solid #f9662b;
  outline-offset: 2px;
}

/*----------------------
MOBILE MENU
----------------------*/
.mobile-menu-toggle {
  display: none;
  background: #f9662b;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 13px;
  padding: 6px 14px 8px 14px;
  transition: background 0.16s;
  position: relative;
  z-index: 105;
}
.mobile-menu-toggle:active {
  background: #22263d;
}
@media (max-width:1023px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: auto;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,38,61,0.88);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  animation: slideInRight 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}
.mobile-menu-close {
  background: #f9662b;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 12px;
  margin: 32px 26px 16px 0;
  padding: 4px 16px 5px 16px;
  transition: background 0.15s;
  z-index: 999999;
  box-shadow: 0 3px 15px 0 rgba(249,102,43,0.14);
}
.mobile-menu-close:hover, .mobile-menu-close:focus-visible {
  background: #22263d;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff; /* Panel bg */
  width: 92vw;
  max-width: 370px;
  height: 100vh;
  padding: 36px 0 24px 36px;
  border-radius: 34px 0 0 34px;
  box-shadow: -5px 0 26px 0 rgba(34,38,61,0.09), -6px 0 22px 0 rgba(249,102,43,0.10);
  overflow-y: auto;
  position: fixed;
  right: 0; top: 0;
  z-index: 10000;
  animation: fadeIn 0.25s;
}
.mobile-nav a {
  color: #22263d;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  padding: 12px 0 6px 4px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus-visible {
  color: #f9662b;
  background: #fff1ea;
  outline: none;
}

@media (max-width:768px) {
  .mobile-menu {
    max-width: 100vw;
    min-width: 100vw;
    border-radius: 0;
  }
  .mobile-nav {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    border-radius: 0 0 0 0;
    padding-left: 18vw;
  }
}

@keyframes slideInRight {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(0);    }
}
@keyframes slideOutRight {
  0%   { transform: translateX(0);    }
  100% { transform: translateX(100%); }
}

/*----------------------
BUTTONS & LINKS
----------------------*/
a, .btn-primary {
  outline: none;
  text-decoration: none;
  transition: color 0.18s, background 0.18s, box-shadow 0.18s;
}

/*----------------------
FORMS (for contact pages expansion)
----------------------*/
input, textarea, select {
  border: 2px solid #e9eaf0;
  border-radius: 10px;
  background: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 11px 16px;
  font-size: 1rem;
  color: #22263d;
  margin-bottom: 16px;
  width: 100%;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #f9662b;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #22263d;
  margin-bottom: 7px;
  display: block;
  font-size: 1rem;
}

/*----------------------
LEGAL/TEXT SECTIONS
----------------------*/
.legal .container {
  flex-direction: column;
}
.legal .content-wrapper {
  margin-top: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(34,38,61,0.06);
  padding: 32px 22px;
}
.legal h1 {
  font-size: 2.2rem;
  color: #f9662b;
  margin-bottom: 18px;
}

.text-section ul, .text-section ol, .about-story ul, .about-story ol {
  margin-left: 1.1em;
  padding-left: 15px;
}
.text-section ul li, .about-story ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #35385b;
}

.timeline h3 {
  color: #f9662b;
  font-size: 1.08rem;
  margin-bottom: 2px;
}
.timeline ul {
  margin-left: 1em;
}
.timeline ul li {
  margin-bottom: 7px;
  color: #22263d;
}

/*----------------------
TESTIMONIALS & RATINGS
----------------------*/
.testimonials .container {
  flex-direction: column;
}
.testimonials h2 {
  color: #f9662b;
}
.ratings {
  margin-top: 18px;
  color: #22263d;
  font-weight: 800;
  font-size: 1.12rem;
  background: #ffe8e1;
  display: inline-block;
  padding: 9px 16px 7px 16px;
  border-radius: 23px;
  box-shadow: 0 1px 7px 0 rgba(249,102,43,0.066);
  margin-bottom: 6px;
}

/*----------------------
UTILITY & HELPERS
----------------------*/
.text-section {
  max-width: 730px;
  font-size: 1.09rem;
  color: #22263d;
  margin-bottom: 16px;
}
.about-home {
  background: #fff7f0;
  margin-bottom: 60px;
  border-radius: 28px;
}
.services, .about-story, .about-consultation, .about-location, .contact-info {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(34,38,61,0.07);
}

/*----------------------
TYPOGRAPHY SCALE (mobile-first)
----------------------*/
html {
  font-size: 16px;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1rem; }

@media (min-width: 600px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.12rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.22rem; }
}

/*----------------------
FLEXBOX LAYOUTS RESPONSIVE
----------------------*/
.content-wrapper {
  flex-direction: column;
}
.feature-grid, .team-members-grid {
  flex-direction: row;
}
@media (max-width: 992px) {
  .feature-grid, .team-members-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6vw;
  }
  .content-wrapper {
    gap: 22px;
  }
  .feature-grid, .team-members-grid {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .feature-item, .team-member {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
  .main-nav, .footer-nav {
    flex-direction: column;
    gap: 13px;
  }
  .section, section {
    padding: 32px 9vw;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 2vw;
  }
  .section, section {
    padding: 22px 2vw;
    border-radius: 19px;
  }
}

.text-image-section {
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/*----------------------
COOKIE CONSENT BANNER
----------------------*/
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #22263d;
  color: #fff;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  box-shadow: 0 -5px 40px 0 rgba(34,38,61,0.19);
  border-radius: 19px 19px 0 0;
  animation: fadeInUp 0.52s cubic-bezier(.68,-0.55,.27,1.55);
}
.cookie-consent-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #fff;
  flex: 1 1 0;
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 10px;
  border: none;
  padding: 9px 19px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 7px 0 rgba(249,102,43,0.13);
  margin: 0;
  transition: background 0.15s, color 0.15s;
}
.cookie-btns .accept {
  background: #f9662b;
  color: #fff;
}
.cookie-btns .accept:hover, .cookie-btns .accept:focus-visible {
  background: #fff;
  color: #f9662b;
}
.cookie-btns .reject {
  background: #bebed5;
  color: #22263d;
}
.cookie-btns .reject:hover, .cookie-btns .reject:focus-visible {
  background: #e9eaf0;
}
.cookie-btns .settings {
  background: #fff;
  color: #f9662b;
  border: 1.5px solid #f9662b;
}
.cookie-btns .settings:hover, .cookie-btns .settings:focus-visible {
  background: #fff0e9;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px 18px 13px;
    gap: 16px;
  }
  .cookie-btns {
    flex-direction: row;
    gap: 12px;
    width: 100%;
    justify-content: flex-start;
  }
}
/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 100001;
  inset: 0 0 0 0;
  background: rgba(34,38,61, 0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
.cookie-modal {
  background: #fff;
  color: #22263d;
  border-radius: 19px;
  max-width: 370px;
  width: 92vw;
  padding: 32px 23px 28px 23px;
  box-shadow: 0 3px 24px 0 rgba(34,38,61,0.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInUp 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f9662b;
  font-size: 1.18rem;
  margin-bottom: 11px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.cookie-cat label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22263d;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-cat input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #f9662b;
}
.cookie-cat .always-on {
  color: #bebed5;
  font-size: 0.97rem;
  font-weight: 700;
  margin-left: 5px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 10px;
  border: none;
  padding: 9px 21px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.cookie-modal-actions .modal-accept {
  background: #f9662b;
  color: #fff;
}
.cookie-modal-actions .modal-accept:hover, .cookie-modal-actions .modal-accept:focus-visible {
  background: #fff0e9;
  color: #f9662b;
}
.cookie-modal-actions .modal-cancel {
  background: #fff;
  color: #22263d;
  border: 1.5px solid #bebed5;
}
.cookie-modal-actions .modal-cancel:hover, .cookie-modal-actions .modal-cancel:focus-visible {
  background: #fff7f0;
}

/*----------------------
ANIMATIONS
----------------------*/
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Fun hover wobble for playful_dynamic */
@keyframes playBounce {
  40% { transform: scale(1.04) rotate(-2deg); }
  60% { transform: scale(.97)  rotate(1deg); }
  80% { transform: scale(1.02) rotate(-1deg); }
  to  { transform: scale(1.0)  rotate(0deg); }
}
.card:hover, .feature-item:hover, .btn-primary:hover  {
  animation: playBounce 0.30s;
}

/*----------------------
SCROLLBAR & SELECTION
----------------------*/
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #f9662b;
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: #e9eaf0;
}
::selection {
  background: #f9662b;
  color: #fff;
}

/*----------------------
COLOR CLASSES (for icons swatches etc)
----------------------*/
.color-primary { color: #22263d !important; }
.color-accent { color: #f9662b !important; }
.bg-accent { background: #f9662b !important; color: #fff !important; }
.bg-secondary { background: #e9eaf0 !important; }
.bg-light { background: #fff !important; }

/*----------------------
SPACING ENFORCEMENT
----------------------*/
.section, section, .card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .card-grid, .feature-grid, .team-members-grid, .content-grid {
  gap: 20px;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/**** END OF FILE ****/
