/* ==== CSS RESET & NORMALIZE ==== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F7F9FB;
  color: #283B4C;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #254872;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:hover, a:focus {
  color: #28855B;
  outline: none;
}
ul {
  list-style: disc outside;
  padding-left: 24px;
}
ol {
  list-style: decimal outside;
  padding-left: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #283B4C;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
h4, h5, h6 { font-weight: 500; margin-bottom: 8px; }

/* ==== BRAND COLORS (Artistic palette extension) ==== */
:root {
  --primary: #283B4C;
  --secondary: #7FC29B;
  --accent: #F7F9FB;
  --vibrant1: #FFBB00;
  --vibrant2: #EE6973;
  --vibrant3: #0AABDC;
  --neutral1: #F7F9FB;
  --neutral2: #F2F4F7;
  --gray-dark: #22334C;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== FLEXBOX PATTERNS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px 0 rgba(40, 59, 76, 0.10), 0 1.5px 3px 0 rgba(127,194,155,0.13);
  padding: 28px 22px;
  transition: box-shadow 0.22s, transform 0.22s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 12px 36px 0 rgba(40, 59, 76, 0.18), 0 2px 5px 0 rgba(127,194,155,0.15);
  transform: translateY(-2px) scale(1.03);
}
.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;
  margin-bottom: 28px;
  background: #F7F9FB;
  border-left: 6px solid var(--vibrant1);
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(40,59,76,0.07);
  color: #283B4C;
}
.testimonial-card p {
  color: #22334C;
  font-size: 1rem;
  margin-bottom: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== ARTISTIC ELEMENTS & CREATIVE SHAPES ==== */
.accent-bg {
  background: var(--secondary);
  background: linear-gradient(98deg, var(--secondary) 82%, var(--vibrant1) 100%);
  color: #22334C;
  border-radius: 28px 28px 38px 38px/ 10px 32px 40px 10px;
  margin-bottom: 48px;
  box-shadow: 0 6px 30px rgba(127,194,155,0.13);
}

.hero-section, .team-hero-section, .services-hero-section, .pricing-hero-section, .testimonials-hero-section, .contact-hero-section {
  padding: 68px 0 44px 0;
  text-align: left;
  background: linear-gradient(120deg, var(--vibrant3) 22%, var(--primary) 95%);
  color: #fff;
  border-radius: 0 0 64px 16px/0 0 46px 12px;
  position: relative;
  overflow: hidden;
}
.hero-section::after,
.team-hero-section::after,
.services-hero-section::after,
.pricing-hero-section::after,
.testimonials-hero-section::after,
.contact-hero-section::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -24px;
  width: 280px;
  height: 170px;
  background: radial-gradient(circle at 80% 40%, var(--vibrant1) 70px, transparent 160px),
              radial-gradient(circle at 25% 90%, var(--secondary) 52px, transparent 90px);
  opacity: .18;
  z-index: 1;
}

.hero-section .content-wrapper,
.team-hero-section .content-wrapper,
.services-hero-section .content-wrapper,
.pricing-hero-section .content-wrapper,
.testimonials-hero-section .content-wrapper,
.contact-hero-section .content-wrapper {
  position: relative;
  z-index: 2;
}

.feature-grid, .service-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
}
.feature-grid > div, .service-listing > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 20px 30px 19px 26px/23px 8px 38px 14px;
  box-shadow: 0 2px 14px 0 rgba(40,59,76,0.10);
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.18s, transform 0.20s;
}
.feature-grid > div:hover, .service-listing > div:hover {
  box-shadow: 0 10px 32px rgba(238,105,115,0.13);
  transform: translateY(-4px) scale(1.025);
}
.feature-grid img, .service-listing img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
.feature-grid h3, .service-listing h3 {
  font-size: 1.1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary);
}
.feature-grid p, .service-listing p {
  margin-bottom: 4px;
}

.value-props ul, .price-guarantee-section ul, .service-inclusions ul, .promise-section ul, .about-snippet ul, .faq-accordion {
  padding-left: 16px;
}

/* ==== BUTTONS ==== */
.btn-primary, .btn-secondary {
  appearance: none;
  border: none;
  outline: none;
  display: inline-block;
  padding: 14px 36px;
  min-width: 180px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, transform 0.13s, box-shadow 0.19s;
  box-shadow: 0 2px 10px 0 rgba(127,194,155,0.10);
  margin-top: 12px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  position: relative;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(90deg, var(--secondary) 80%, var(--vibrant2) 100%);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--vibrant1);
  color: var(--primary);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 16px rgba(255, 187, 0, .14);
}
.btn-secondary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--vibrant2);
  color: #fff;
  box-shadow: 0 4px 16px rgba(238, 105, 115, .12);
  transform: translateY(-1px) scale(1.03);
}

/* ==== TABLES ==== */
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(40,59,76,0.10);
  margin: 20px 0 20px 0;
  overflow: hidden;
  font-size: 1rem;
}
thead {
  background: var(--vibrant3);
  color: #fff;
  font-weight: 700;
}
table th, table td {
  padding: 18px 16px;
  text-align: left;
}
table tr:not(:last-child) th, table tr:not(:last-child) td {
  border-bottom: 1px solid #F2F4F7;
}
table th {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}
table tr:hover td {
  background: rgba(127,194,155,0.12);
}
table td {
  color: #22334C;
}

/* ==== NAVIGATION BAR ==== */
header {
  background: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 105;
  box-shadow: 0 4px 16px -9px rgba(40,59,76,0.07);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  min-height: 74px;
}
.main-nav a img {
  width: 42px;
  height: 42px;
  margin-right: 7px;
  vertical-align: middle;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 16px;
  transition: background 0.15s, color 0.16s;
  color: #254872;
  position: relative;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  background: #F2F4F7;
  color: var(--vibrant2);
}

/* ==== BURGER & MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary);
  position: absolute;
  right: 20px;
  top: 16px;
  cursor: pointer;
  z-index: 110;
  width: 44px;
  height: 48px;
  border-radius: 12px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2F4F7;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(104deg, var(--primary) 60%, var(--vibrant3) 100%);
  box-shadow: 0 8px 32px 0 rgba(40,59,76,0.20);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  opacity: 0.99;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 0 0;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 16px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #22334C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 52px;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid rgba(127,194,155,0.15);
  display: block;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,187,0,0.09);
  color: var(--vibrant1);
}
/* Hide nav on small screens, toggle burger */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==== FOOTER ==== */
footer {
  background: #22334C;
  color: #fff;
  padding: 44px 0 22px 0;
  font-size: 1rem;
  border-radius: 36px 36px 0 0/24px 24px 0 0;
  box-shadow: 0 -8px 30px rgba(40,59,76,.09);
  margin-top: 44px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 13px;
  border-radius: 12px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff;
  color: var(--primary);
}
.branding {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.branding img {
  width: 36px;
  height: 36px;
}
.contact-snippet {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.97rem;
  margin-top: 4px;
}
.contact-snippet a {
  color: var(--vibrant1);
}

/* ==== ARTISTIC TYPOGRAPHY ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600;700&display=swap');
h1, h2, h3 {
  text-shadow: 0 2px 18px rgba(127,194,155,0.10);
}
h1 {
  letter-spacing: 0.07em;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
}
h2 {
  font-weight: 700;
  margin-bottom: 10px;
}
h3 {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--vibrant2);
}

strong { font-weight: 700; color: var(--primary); }
small { color: #7FC29B; font-size: 90%; }

/* ==== TESTIMONIALS ==== */
.star-rating {
  color: var(--vibrant1);
  font-size: 1.06rem;
  letter-spacing: 0.12em;
}

/* ==== LEGAL & INFO SECTIONS ==== */
.legal-section .text-section {
  background: #fff;
  border-radius: 18px;
  padding: 28px 18px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(40,59,76,0.07);
}
.legal-section h1, .legal-section h2 {
  color: var(--primary);
}

/* ==== COLOR CONTRAST IN TESTIMONIALS ==== */
.testimonial-card {
  background: #fff;
  color: #22334C;
  border-left: 6px solid var(--vibrant2);
}
.testimonial-card p {
  color: #22334C;
}

/* ==== HOVER EFFECTS & MICRO-INTERACTIONS ==== */
main a:not(.btn-primary):not(.btn-secondary):hover, main a:not(.btn-primary):not(.btn-secondary):focus {
  color: var(--vibrant2);
  text-decoration: underline wavy var(--vibrant2) 1.5px;
}
section a.btn-primary:active, .btn-secondary:active {
  filter: brightness(0.92);
  transform: scale(0.98);
}

/* ==== FAQ ACCORDION ==== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 18px;
  padding: 22px 16px;
  box-shadow: 0 1px 5px rgba(40,59,76,.07);
}
.faq-accordion strong { color: var(--vibrant3); }

/* ==== BADGES, ICON GRIDS ==== */
.trust-badges, .certifications {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
}
.trust-badges img, .certifications img {
  width: 46px;
  height: 46px;
}
.quality-guarantee, .green-cleaning, .address-map {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}
.quality-guarantee img, .green-cleaning img {
  width: 38px;
  height: 38px;
}

/* ==== SPECIAL ARTISTIC DECORATIVES ==== */
/* (e.g., dynamic blobs/overlays are in hero-section ::after etc.) */

/* ==== RESPONSIVE BREAKPOINTS ==== */
@media (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 1100px) {
  .content-grid, .feature-grid, .service-listing {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-listing {
    gap: 14px;
  }
  .feature-grid > div, .service-listing > div {
    flex: 1 1 300px;
    padding: 18px 10px;
  }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .service-listing {
    flex-direction: column;
    gap: 20px;
  }
  .about-snippet .content-wrapper, .content-wrapper {
    gap: 18px;
  }
  .section, .accent-bg {
    padding: 28px 8px;
  }
  .footer-nav {
    gap: 10px;
    flex-wrap: wrap;
  }
  .branding, .contact-snippet {
    flex-direction: column;
    gap: 4px;
  }
  .feature-grid > div, .service-listing > div {
    min-width: 0;
    width: 100%;
    margin-bottom: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.11rem; }
  .testimonial-card {
    padding: 14px;
    font-size: 0.975rem;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 6px;
  }
  .btn-primary, .btn-secondary {
    font-size: 0.97rem;
    padding: 12px 12px;
    min-width: 130px;
  }
  .main-nav a img {
    width: 32px;
    height: 32px;
  }
  .branding img {
    width: 26px;
    height: 26px;
  }
}
/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(95deg, #fff 85%, #F7F9FB 100%);
  box-shadow: 0 -4px 20px rgba(40,59,76,0.09);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 22px;
  font-size: 1rem;
  animation: cookie-in 0.44s cubic-bezier(.44,.53,0,1.04);
}
@keyframes cookie-in {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner-text {
  flex: 1 1 300px;
  color: #22334C;
  font-size: 1rem;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  border-radius: 30px;
  padding: 10px 24px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.18s, color 0.17s;
  border: none;
  cursor: pointer;
}
.cookie-accept {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--vibrant1);
  color: var(--primary);
}
.cookie-reject {
  background: #fff;
  color: var(--vibrant2);
  border: 2px solid var(--vibrant2);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--vibrant2);
  color: #fff;
}
.cookie-settings {
  background: #fff;
  color: var(--vibrant3);
  border: 2px solid var(--vibrant3);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--vibrant3);
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    padding: 18px 8px;
  }
  .cookie-banner-actions {
    flex-wrap: wrap;
    gap: 7px;
  }
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40,59,76,0.15);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  width: 95%;
  max-width: 420px;
  padding: 34px 22px 22px 22px;
  box-shadow: 0 8px 38px rgba(40,59,76,0.20);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modal-in 0.36s cubic-bezier(.61,.04,.25,1.06);
}
@keyframes modal-in {
  0% { opacity: 0; transform: scale(.87) translateY(50px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.45rem;
  cursor: pointer;
  padding: 2px 9px;
  border-radius: 16px;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F2F4F7;
}
.cookie-modal h2 {
  margin-bottom: 7px;
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 5px;
  border-radius: 12px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--vibrant2);
  margin-right: 8px;
  min-width: 110px;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--secondary);
  width: 22px; height: 22px;
}
.cookie-category .category-description {
  color: #283B4C;
  font-size: 0.97rem;
}
.cookie-category.essential {
  opacity: .72;
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal-buttons button {
  padding: 10px 18px;
  border-radius: 24px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.save-cookies {
  background: var(--secondary);
  color: var(--primary);
}
.save-cookies:hover, .save-cookies:focus {
  background: var(--vibrant2);
  color: #fff;
}

/* ==== UTILITY CLASSES ==== */
.accent {
  color: var(--vibrant3);
}
.text-center {
  text-align: center !important;
}
.mt-2 { margin-top: 12px !important; }
.mt-4 { margin-top: 24px !important; }
.mb-2 { margin-bottom: 12px !important; }
.mb-4 { margin-bottom: 24px !important; }
.gap-20 { gap: 20px !important; }

/* ==== ACCESSIBILITY ==== */
:focus {
  outline: 2px dashed var(--vibrant1);
  outline-offset: 2px;
}

/* ==== PAGE SPECIFIC ==== */
.services-preview ul li::marker {
  color: var(--vibrant2);
}

@media (hover: hover) {
  .feature-grid > div:hover,
  .service-listing > div:hover,
  .card:hover,
  .testimonial-card:hover {
    filter: brightness(1.01) drop-shadow(0 2px 18px rgba(40,59,76,0.11));
  }
}

/********** Ensure minimum margin for all content cards/sections **********/
.feature-grid > div,
.service-listing > div,
.card,
.testimonial-card,
.accent-bg, .section {
  margin-bottom: 20px;
}

/********** Prevent Content Overlap Near Footer **********/
main { min-height: 66vh; }

/**** Address Mobile Layout Transitions ****/
.mobile-menu, .mobile-nav, .footer-nav, .content-wrapper, .feature-grid, .service-listing, .testimonial-card, .card-container, .content-grid, .about-snippet .content-wrapper, .address-map {
  min-width: 0 !important;
}
