/* --------------------------------------------------------------------------------------------------
   CSS RESET & PLAYFUL_DYNAMIC FOUNDATION
--------------------------------------------------------------------------------------------------*/
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F4FAFD;
  color: #222939;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.3s;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: #00C6B0; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #F75C03; }
button { font: inherit; background: none; border: none; cursor: pointer; outline: none; }

/* --------------------------------------------------------------------------------------------------
   FONT IMPORTS (Best Effort – if not compounded by site code, fallback to nearest)
--------------------------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

/* --------------------------------------------------------------------------------------------------
   COLOR PALETTE – playful, dynamic, high-energy variants
--------------------------------------------------------------------------------------------------*/
:root {
  --brand-primary: #222939;
  --brand-secondary: #728281;
  --brand-accent: #E8F1F3;
  --brand-gradient: #71D9F2;
  --brand-playful1: #FDF200;
  --brand-playful2: #FF73A8;
  --brand-playful3: #38E888;
  --brand-playful4: #F75C03;
  --brand-bright-bg: #F4FAFD;
  --brand-card-bg: #fff;
  --brand-shadow: rgba(28, 76, 138, 0.10);
}

/* --------------------------------------------------------------------------------------------------
   TYPOGRAPHY — playful, bouncy, energetic
--------------------------------------------------------------------------------------------------*/
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--brand-primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.08;
  text-shadow: 1px 4px 0 var(--brand-playful1),0 1px 0 var(--brand-gradient);
}
@media (min-width: 600px) {
  h1, .hero h1 { font-size: 2.5rem; }
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.65rem;
  margin-bottom: 16px;
  color: var(--brand-playful4);
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 8px;
  color: var(--brand-secondary);
}
@media (min-width: 600px) {
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}
p, ul, ol, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
strong { font-weight: 700; color: var(--brand-primary); }
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--brand-secondary);
}
ul, ol {
  margin-left: 18px;
  margin-bottom: 10px;
}
li {
  margin-bottom: 5px;
}

/* --------------------------------------------------------------------------------------------------
   CONTAINER AND LAYOUT SECTIONS — FLEXBOX ONLY!
--------------------------------------------------------------------------------------------------*/
.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
}
.section,
.hero,
.features,
.about-home,
.testimonials,
.contact-teaser,
.about-values,
.about-highlights,
.services-overview,
.cta-contact,
.projects-features,
.team-about,
.legal,
.contact-info,
.contact-form-teaser,
.thank-next-steps,
.blog-posts {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 18px;
}
/* Extra card-container required by requirements */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--brand-card-bg);
  border-radius: 18px;
  position: relative;
  box-shadow: 0 4px 18px var(--brand-shadow);
  padding: 28px 24px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 12px 28px var(--brand-shadow); }
.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: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 14px var(--brand-shadow);
  min-width: 250px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px var(--brand-shadow);
  transform: scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 16px 20px 16px;
  background: linear-gradient(45deg, #FDF200 3%, #38E888 25%, #fff 100%);
  border-radius: 18px;
  box-shadow: 0 4px 14px var(--brand-shadow);
  min-width: 230px;
  max-width: 340px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  border: 2px solid #FF73A8;
  transition: transform .14s, box-shadow .16s;
}
.feature-item img { height: 44px; width: 44px; margin-bottom: 8px; }
.feature-item h3 { margin-bottom: 4px; }
.feature-item:hover {
  transform: translateY(-4px) scale(1.04) rotate(-2deg);
  border-color: #F75C03;
  box-shadow: 0 8px 32px var(--brand-shadow);
  background: linear-gradient(60deg, #FF73A8 18%, #FDF200 70%, #fff 100%);
}

/* Feature Grids on various pages */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
@media (max-width: 860px) {
  .feature-grid { flex-direction: column; align-items: stretch; }
}

/* Team grid on /team.html */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.team-member {
  background: var(--brand-bright-bg);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 3px 9px var(--brand-shadow);
  min-width: 210px;
  max-width: 270px;
  flex: 1 1 165px;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Montserrat';
  font-weight: 700;
  color: #4b3d5c;
  transition: box-shadow .17s, background .17s, transform .14s;
}
.team-member h3 { color: #F75C03; margin-bottom: 6px; }
.team-member:hover {
  background: #FF73A8;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 7px 26px var(--brand-shadow);
}

/* Post list for blog */
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.post-preview {
  background: linear-gradient(60deg, #38E888 4%, #fff 100%);
  border-radius: 16px;
  padding: 22px 18px 16px 18px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 200px;
  margin-bottom: 18px;
  box-shadow: 0 3px 9px var(--brand-shadow);
  transition: box-shadow .16s, background .16s, transform .13s;
}
.post-preview h3 {
  color: #F75C03;
  margin-bottom: 8px;
}
.post-preview span {
  font-size: 0.95rem;
  color: var(--brand-secondary);
}
.post-preview:hover {
  background: #FDF200;
  box-shadow: 0 7px 24px var(--brand-shadow);
  transform: scale(1.03) rotate(-2deg);
}

/* Icon highlights in projects page */
.icon-highlights ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.icon-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  color: #F75C03;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--brand-shadow);
  padding: 9px 16px;
  min-width: 150px;
}
.icon-highlights img { width: 32px; height: 32px; }

/* --------------------------------------------------------------------------------------------------
   HEADER / NAVIGATION, LOGO, MOBILE MENU
--------------------------------------------------------------------------------------------------*/
header {
  width: 100%;
  background: linear-gradient(60deg, #FDF200 5%, #38E888 120%); /* playful bg */
  box-shadow: 0 3px 10px var(--brand-shadow);
  position: sticky;
  top: 0;
  z-index: 101;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo img { height: 39px; width: auto; filter: drop-shadow(0 2px 0 #FDF200) drop-shadow(0 0 18px #38E88833); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.025rem;
}
.main-nav a {
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, transform 0.12s;
  color: var(--brand-primary);
}
.main-nav a:hover, .main-nav a:focus {
  background: #FF73A8;
  color: #fff;
  transform: scale(1.08) skewX(-5deg);
}
.btn-primary,
.btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.06rem;
  border-radius: 100px;
  padding: 11px 32px;
  border: none;
  outline: none;
  min-width: 170px;
  cursor: pointer;
  margin-left: 18px;
  box-shadow: 0 4px 16px var(--brand-shadow);
  transition: background 0.19s, color 0.16s, transform 0.14s, box-shadow 0.14s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.03em;
}
.btn-primary {
  background: #F75C03;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FDF200;
  color: #222939;
  transform: scale(1.07);
  box-shadow: 0 8px 26px #FDF20070;
}
.btn-secondary {
  background: #FDF200;
  color: #222939;
  border: 2px solid #38E888;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #38E888;
  color: #fff;
  border-color: #F75C03;
  transform: scale(1.07);
}

/* Burger menu for mobile */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 205;
  background: #F75C03;
  color: #fff;
  height: 51px;
  width: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.15rem;
  border: 3px solid #FF73A8;
  box-shadow: 0 2px 9px var(--brand-shadow);
  outline: none;
  cursor: pointer;
  transition: background .16s, transform .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FDF200;
  color: #F75C03;
  transform: rotate(8deg) scale(1.11);
}

@media (min-width: 950px) {
  .mobile-menu-toggle { display: none; }
}

/* Hide desktop nav on mobile */
@media (max-width: 950px) {
  .main-nav { display: none; }
  header .btn-primary { display: none; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(120deg, #FDF200 60%, #38E888 100%, #FF73A8 180%);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.73,.34,.39,1.23);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 28px 18px 28px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.6rem;
  background: #FF73A8;
  color: #fff;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
  box-shadow: 0 2px 8px var(--brand-shadow);
  transition: background .16s, transform .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #38E888;
  color: #222939;
  transform: scale(1.07) rotate(-8deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  background: #fff;
  color: #F75C03;
  padding: 15px 25px;
  border-radius: 14px;
  box-shadow: 0 4px 14px var(--brand-shadow);
  margin-bottom: 8px;
  text-align: left;
  font-weight: 700;
  transition: background .15s, color .14s, transform .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FF73A8;
  color: #fff;
  transform: scale(1.06) rotate(-2deg);
}

/* --------------------------------------------------------------------------------------------------
   HERO / SECTION-SPECIFIC STYLES
--------------------------------------------------------------------------------------------------*/
.hero {
  background: linear-gradient(90deg, #FDF200 20%, #38E888 95%, #fff 120%);
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.hero .container > .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero .btn-primary {
  margin-left: 0;
  margin-top: 16px;
}
@media (max-width: 860px) {
  .hero { min-height: 170px; }
}

/* --------------------------------------------------------------------------------------------------
   TESTIMONIALS + STARS
--------------------------------------------------------------------------------------------------*/
.testimonials {
  background: #E8F1F3;
  border-radius: 16px;
  padding-left: 0;
  padding-right: 0;
}
.testimonials .testimonial-card {
  margin-bottom: 20px;
  background: #fff;
  color: #1d252b;
}
.stars {
  font-size: 1.22rem;
  color: #FDF200;
  letter-spacing: 2.5px;
  user-select: none;
  text-shadow: 0 2px 8px #F75C0330;
}

/* --------------------------------------------------------------------------------------------------
   FOOTER
--------------------------------------------------------------------------------------------------*/
footer {
  background: #222939;
  color: #fff;
  padding: 48px 0 32px 0;
  box-shadow: 0 -3px 10px var(--brand-shadow);
  position: relative;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img { height: 38px; margin-bottom: 12px; filter: drop-shadow(0 1px 0 #fff); }
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #FDF200;
  font-weight: 700;
  margin-bottom: 6px;
  transition: color 0.16s, transform .14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #FF73A8;
  transform: scale(1.08) skewX(-10deg);
}
.footer-contact { font-size: 1rem; margin-bottom: 12px; }
.footer-contact a { color: #38E888; font-weight: 700; }
.footer-contact a:hover { color: #FDF200; }
footer .btn-secondary { margin-left: 0; margin-top: 18px; }

@media (max-width: 860px) {
  footer .container { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-logo { align-self: flex-start; }
}

/* --------------------------------------------------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  z-index: 9000;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #FDF200 30%, #38E888 90%, #fff 120%);
  padding: 24px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  box-shadow: 0 -2px 14px var(--brand-shadow);
  animation: cookieIn .44s cubic-bezier(.23,1.02,.61,.98);
}
@keyframes cookieIn { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-banner .cookie-text {
  color: #222939;
  font-size: 1rem;
  max-width: 420px;
  flex: 1;
  margin-right: 20px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  padding: 9px 23px;
  border-radius: 100px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.03rem;
  background: #F75C03;
  color: #fff;
  transition: background 0.15s, color .12s, transform .11s;
  box-shadow: 0 3px 7px var(--brand-shadow);
  cursor: pointer;
}
.cookie-banner .cookie-btn.accept {
  background: #38E888;
}
.cookie-banner .cookie-btn.accept:hover { background: #FDF200; color: #222939; }
.cookie-banner .cookie-btn.reject { background: #FF73A8; }
.cookie-banner .cookie-btn.reject:hover { background: #F75C03; color: #fff; }
.cookie-banner .cookie-btn.settings { background: #FDF200; color: #222939; }
.cookie-banner .cookie-btn.settings:hover { background: #222939; color: #FDF200; }

/* Modal overlay */
.cookie-modal {
  position: fixed;
  z-index: 9250;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(28, 76, 138, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalShow .28s cubic-bezier(.22, 1, .36, 1);
}
@keyframes modalShow { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  padding: 40px 32px 28px 32px;
  box-shadow: 0 10px 40px #22293922;
  min-width: 340px;
  max-width: 99vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  animation: modalBounce .42s cubic-bezier(.23,1.02,.61,.98);
}
@keyframes modalBounce {
  0% { transform: scale(.85); } 75% { transform: scale(1.05); } 100% { transform: scale(1); }
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: #F75C03;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  background: #E8F1F3;
  border-radius: 11px;
  padding: 13px 19px;
  min-width: 200px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #222939;
}
.cookie-category input[type="checkbox"] {
  width: 24px; height: 24px;
  accent-color: #38E888;
  margin-right: 5px;
}
.cookie-category.disabled input { accent-color: #bbb; }
.cookie-category.disabled label { color: #B8C3CA; }
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 19px;
  background: #F75C03;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: none;
  box-shadow: 0 2px 7px var(--brand-shadow);
  transition: background .13s, color .13s, transform .12s;
}
.cookie-modal-close:hover {
  background: #FF73A8;
  color: #FDF200;
  transform: scale(1.07) rotate(4deg);
}

@media (max-width: 600px) {
  .cookie-modal-content { padding: 24px 16px 16px 16px; min-width: 0; }
}

/* --------------------------------------------------------------------------------------------------
   RESPONSIVE – ADAPTIVE FLEXBOX STRUCTURE
--------------------------------------------------------------------------------------------------*/
@media (max-width: 860px) {
  .container, 
  .section, 
  .hero, 
  .features, 
  .about-home, 
  .testimonials, 
  .contact-teaser, 
  .about-values, 
  .about-highlights, 
  .services-overview, 
  .projects-features, 
  .team-about, 
  .legal, 
  .contact-info, 
  .contact-form-teaser, 
  .thank-next-steps, 
  .blog-posts {
    padding-left: 7vw; padding-right: 7vw;
  }
  .footer-logo img { height: 28px; }
}
@media (max-width: 700px) {
  .feature-grid, .content-grid, .card-container, .post-list, .team-grid { flex-direction: column; gap: 14px; }
}
@media (max-width: 620px) {
  header .container { flex-direction: column; gap: 13px; align-items: flex-start; }
  h1, .hero h1 { font-size: 1.40rem; }
  h2 { font-size: 1.04rem; }
  .btn-primary, .btn-secondary { min-width: 125px; padding: 9px 14px; font-size: 1.01rem; }
  .footer-logo img { height: 23px; }
  .footer-contact, .footer-menu { font-size: 0.94rem; }
  .icon-highlights li { min-width: 105px; font-size: 0.97rem; padding: 6px 10px; }
}
@media (max-width: 430px) {
  .hero, .container, .section { padding-left: 6px; padding-right: 6px; }
}

/* Responsive text-image section */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------------------------------
   VISUAL EXTRAS, DECORATIONS, MICRO-INTERACTIONS
--------------------------------------------------------------------------------------------------*/
.feature-item {
  animation: featureCardPop .5s cubic-bezier(0.47, 1.64, 0.41, 0.8) both;
}
@keyframes featureCardPop { 0% { transform: scale(0.92); opacity: 0.2;} 75%{transform:scale(1.04);} 100% {transform:scale(1); opacity:1;} }

.team-member, .post-preview, .testimonial-card {
  animation: fadePop .7s cubic-bezier(0.55, 1.32, 0.31, 0.78) both;
}
@keyframes fadePop { 0% { transform: scale(0.88); opacity:0; } 70% {transform:scale(1.03);} 100%{transform:scale(1); opacity:1;} }

.btn-primary, .btn-secondary {
  position: relative;
  overflow: hidden;
}
.btn-primary:after, .btn-secondary:after {
  content: "";
  position: absolute; left: 0; top: 0; width: 0; height: 100%;
  background: rgba(255,255,255,0.19);
  transition: width 0.22s;
  z-index: 0;
}
.btn-primary:hover:after, .btn-secondary:hover:after { width: 100%; }
.btn-primary:after { background: rgba(0,0,0,0.04); }
.btn-secondary:after { background: rgba(0,0,0,0.10); }
.btn-primary > *, .btn-secondary > * { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------------------------------
   GENERAL CODE HYGIENE — FLEXBOX ONLY, NO GRID, NO COLUMNS
--------------------------------------------------------------------------------------------------*/
/* No display: grid, grid-template-cols, columns property anywhere, as required! */

/* --------------------------------------------------------------------------------------------------
   UTILITY CLASSES (spacing, layout helpers)
--------------------------------------------------------------------------------------------------*/
.mt-1 { margin-top: 8px !important; } .mt-2 { margin-top: 16px !important; }
.mb-1 { margin-bottom: 8px !important; } .mb-2 { margin-bottom: 16px !important; }
.gap-1 { gap: 8px !important; } .gap-2 { gap: 16px !important; }
.hide { display: none !important; }

/* Extra — ensure no overlapping, always generous spacing */
.card, .feature-item, .testimonial-card, .team-member, .post-preview {
  margin-bottom: 20px;
}

.section > *, .hero > *, .content-wrapper > *, .features > *, .testimonials > *, .about-home > *, .about-values > *, .about-highlights > *, .services-overview > *, .cta-contact > *, .projects-features > *, .team-about > *, .contact-info > *, .contact-form-teaser > *, .blog-posts > * {
  margin-bottom: 20px;
}

/* LAST — NO OVERLAPPING ENFORCEMENT */
.card:after, .feature-item:after, .testimonial-card:after, .team-member:after, .post-preview:after {
  display: none;
}

/* --------------------------------------------------------------------------------------------------
   END OF PLAYFUL_DYNAMIC THEME
--------------------------------------------------------------------------------------------------*/