/* Reset & Normalize (Mobile-First) */
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, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F9FAFB;
  color: #2C3E50;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #E67E22;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #2C3E50;
  text-decoration: underline;
}
strong, b {
  font-weight: bold;
}

/* Variables for brand colors and font fallbacks */
:root {
  --brand-primary: #2C3E50;
  --brand-secondary: #E67E22;
  --brand-accent: #F9FAFB;
  --brand-success: #37D67A;
  --brand-warning: #ffc046;
  --brand-info: #21A1FF;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* Typography & Visual Hierarchy */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--brand-primary);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.13;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.14;
}
h4, .h4 {
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--brand-primary);
  margin-bottom: 10px;
  font-weight: 600;
}
p, li, span {
  font-family: var(--font-body);
  color: var(--brand-primary);
  font-size: 1rem;
  margin-bottom: 12px;
}

/* Container System & Spacing */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 3px 18px 0 rgba(44,62,80,0.06);
  display: flex;
  flex-direction: column;
}

/* Playful Shadows & Corners */
.card, .testimonial-card, .feature-item, .faq-item, .company-details, .contact-instructions {
  border-radius: 24px;
  box-shadow: 0 3px 14px 0 rgba(230,126,34,0.10), 0 1.5px 5px 0 rgba(44,62,80,0.09);
  background: #fff;
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s cubic-bezier(.6,1.7,.37,.89), box-shadow 0.18s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover {
  transform: translateY(-5px) scale(1.017);
  box-shadow: 0 8px 30px 0 rgba(230,126,34,0.16), 0 2.5px 10px 0 rgba(44,62,80,0.10);
}

/* Main Navigation (Desktop) */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(44,62,80,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
}
header img {
  height: 42px;
  margin-right: 30px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-primary) !important;
  background: none;
  padding: 7px 16px;
  border-radius: 14px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.btn-primary {
  background: var(--brand-secondary);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 48px;
  font-weight: 700;
  font-family: var(--font-display);
  box-shadow: 0 2px 11px 0 rgba(230,126,34,0.18);
  border: none;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.012em;
  font-size: 1.1rem;
  display: inline-block;
  transition: background 0.15s, box-shadow 0.16s, transform 0.12s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FF9510;
  color: #fff;
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 3.5px 17px 0 rgba(230,126,34,0.22);
}
.btn-secondary {
  background: var(--brand-info);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 36px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 7px 0 rgba(33,161,255,0.11);
  transition: background 0.14s, transform 0.12s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #1592e9;
  transform: scale(1.06) rotate(1.5deg);
}

/* Hamburger/Mobile nav */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-secondary);
  cursor: pointer;
  margin-left: 10px;
  z-index: 65;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(230,126,34,0.08);
}
@media (min-width: 992px) {
  .mobile-menu-toggle { display: none; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(44,62,80,0.98);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.65,1.76,.3,.71);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 24px;
  box-shadow: 10px 0 34px 0 rgba(44,62,80,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 6px 32px 12px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 302;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 34px 0 44px;
  width: 100%;
  z-index: 201;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  padding: 9px 12px 9px 0;
  border-radius: 16px 0 0 16px;
  background: none;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: #fff;
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* Hero Section */
.hero {
  background: linear-gradient(94deg, #FFEED8 40%, #fff 100%);
  padding: 0;
  margin-bottom: 32px;
}
.hero .container {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 42px;
  padding-bottom: 42px;
}
.hero .content-wrapper {
  align-items: flex-start;
  background: none;
  border-radius: 0;
  gap: 22px;
}
.hero h1, .hero p {
  color: var(--brand-primary);
}
.hero .btn-primary {
  margin-top: 12px;
}

/* Features (Home & Services) */
.features {
  margin-bottom: 60px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 230px;
  min-width: 230px;
  background: #FFF7EE;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 3px 13px 0 rgba(230,126,34,0.10), 0 2.5px 9px 0 rgba(44,62,80,0.08);
  transition: box-shadow 0.12s, transform 0.14s;
  border: 2px solid rgba(230,126,34,0.04);
  padding: 24px 18px 16px 18px;
}
.feature-item img {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(230,126,34,0.10);
  background: #fff;
  margin-bottom: 8px;
}
.feature-item h3 {
  color: var(--brand-secondary);
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-item p {
  color: var(--brand-primary);
  opacity: 0.8;
  font-size: 0.97rem;
  margin-bottom: 0;
}
.feature-item:hover {
  transform: translateY(-4px) scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 30px 0 rgba(230,126,34,0.16), 0 2.5px 10px 0 rgba(44,62,80,0.10);
  border-color: var(--brand-secondary);
}

/* Cards, Testimonials, Grids */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 340px;
  margin-bottom: 20px;
  background: #fffbe9;
}
.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;
  margin-bottom: 48px;
}
.text-image-section > * {
  flex: 1 1 360px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(230,126,34,0.09);
  border-left: 6px solid var(--brand-secondary);
  min-width: 240px;
  max-width: 520px;
  position: relative;
}
.testimonial-card p {
  color: #28353c;
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: var(--brand-secondary);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .01em;
}
.testimonial-card::before {
  content: '\201C';
  color: var(--brand-warning);
  font-size: 2.6rem;
  font-family: var(--font-display);
  position: absolute;
  top: 15px;
  left: -17px;
  opacity: .3;
  user-select: none;
  pointer-events: none;
}

/* Process icons row */
.process-icons {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.process-icons img {
  width: 48px;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 8px 0 rgba(230,126,34,0.10);
  padding: 4px;
}

/* FAQ accordion/items (no JS expand here, just style) */
.faq-item {
  margin-bottom: 24px;
  background: #fff;
}
.faq-item h3 {
  margin-bottom: 4px;
  font-size: 1.07rem;
  color: var(--brand-secondary);
  font-family: var(--font-display);
}

/* Contact Info */
.company-details, .contact-instructions {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 24px;
  background: #FFF7EE;
}
.company-details img {
  width: 22px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}
.company-details p {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 6px;
}
/* Contact CTA card */
.contact-cta, .cta, .process-cta {
  background: #FFF7EE;
  border: none;
  margin-bottom: 56px;
  padding: 48px 0 48px 0;
  border-radius: 22px 22px 40px 40px/26px 26px 44px 44px;
  text-align: center;
  box-shadow: 0 2px 13px 0 rgba(230,126,34,0.08);
}
.contact-cta .btn-primary, .cta .btn-primary, .process-cta .btn-primary {
  margin-top: 20px;
}

/* About, Team, Why-choose-us (List Styles) */
ul, ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
ul li,
ol li {
  list-style: circle inside;
  margin-bottom: 7px;
  font-size: 1.01rem;
}

/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 7000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-top: 2px solid var(--brand-secondary);
  box-shadow: 0 -2px 17px 0 rgba(44,62,80,0.14);
  padding: 20px 28px 17px 28px;
  gap: 18px;
  font-size: 1rem;
  max-width: 100vw;
  transition: transform 0.4s cubic-bezier(.75,2.58,.46,1);
}
#cookie-banner.hidden {
  transform: translateY(140%);
  pointer-events: none;
  opacity: 0;
}
#cookie-banner p{
  color: #2C3E50;
  margin: 0;
  font-size: 1rem;
  flex: 1 1 auto;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
#cookie-accept, #cookie-reject, #cookie-settings {
  padding: 10px 23px;
  border-radius: 44px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  transition: background 0.15s, color 0.14s, transform 0.11s;
}
#cookie-accept {
  background: var(--brand-secondary);
  color: #fff;
}
#cookie-accept:hover, #cookie-accept:focus {
  background: #FF9510;
  color: #fff;
  transform: scale(1.04);
}
#cookie-reject {
  background: #FFeed2;
  color: #e67e22;
  border: 2px solid #ffdfa8;
}
#cookie-reject:hover, #cookie-reject:focus {
  background: #ffe0a2;
  color: #be7305;
  transform: scale(1.04);
}
#cookie-settings {
  background: transparent;
  border: 2px solid var(--brand-info);
  color: var(--brand-info);
}
#cookie-settings:hover, #cookie-settings:focus {
  background: var(--brand-info);
  color: #fff;
  transform: scale(1.04);
}

/* Cookie Modal Popup */
#cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 8000;
  background: rgba(44,62,80,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s cubic-bezier(.77,1.4,.44,1.43);
}
#cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 44px 32px 28px 32px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 6px 38px 0 rgba(44,62,80,0.21);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--brand-secondary);
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--brand-primary);
  margin-right: 8px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-secondary);
  width: 19px;
  height: 19px;
}
.cookie-category.disabled label {
  color: #7d7d7d;
  font-style: italic;
  pointer-events: none;
}
#cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 18px;
}
#cookie-modal .modal-actions button, #cookie-modal .modal-actions .btn-primary {
  padding: 10px 23px;
  border-radius: 44px;
  border: none;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
}
#cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  color: var(--brand-secondary);
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  z-index: 9;
  transition: color 0.14s;
}
#cookie-modal .close-modal:hover {
  color: var(--brand-primary);
}

/* Footer Styles */
footer {
  width: 100%;
  background: #fff;
  border-top: 2px solid #FFeed8;
  box-shadow: 0 -1.5px 18px 0 rgba(44,62,80,0.07);
  padding: 0 0 32px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 0 20px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 7px;
}
.footer-menu a {
  color: var(--brand-secondary);
  font-family: var(--font-display);
  font-size: 0.97rem;
  border-radius: 10px;
  transition: background 0.14s;
  padding: 5px 13px;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #FFEED8;
  color: #2C3E50;
}
.footer-details span {
  color: #6a737b;
  font-size: 0.93rem;
  font-family: var(--font-body);
}

/* Project Highlights and Other Cards */
.project-highlights {
  margin-top: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(230,126,34,0.09);
  padding: 22px 18px 12px 18px;
}
.project-highlights h3 {
  margin-bottom: 10px;
  color: var(--brand-secondary);
}

/* Thank You, Cookie, Legal, Policy Pages */
.privacy, .gdpr, .cookie-policy, .terms, .thank-you {
  background: #FFF7EE;
  border-radius: 24px;
  margin: 28px 0;
  padding: 38px 22px;
  box-shadow: 0 2px 9px 0 rgba(230,126,34,0.09);
}
.privacy h2, .gdpr h2, .cookie-policy h2, .terms h2 {
  color: var(--brand-info);
  margin-top: 21px;
}

/* Responsive: Mobile-First Below */
@media (max-width: 1130px) {
  .container { padding: 0 12px; }
}
@media (max-width: 990px) {
  .main-nav { display: none; }
}
@media (max-width: 900px) {
  .content-grid { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px) {
  .section, .card, .faq-item, .company-details, .contact-instructions, .privacy, .gdpr, .cookie-policy, .terms, .thank-you {
    padding: 20px 7px !important;
  }
  header .container {
    height: 60px;
    padding: 0 8px;
  }
  .hero .container {
    padding: 20px 6px 26px 6px;
    min-height: 200px;
  }
  .features-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .process-icons {
    gap: 12px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 16px 10px;
  }
  .footer-menu {
    gap: 8px;
    flex-direction: column;
    margin-bottom: 8px;
  }
  .about-preview, .services-preview, .testimonials-preview {
    padding: 14px 6px !important;
  }
  .content-wrapper {
    gap: 16px;
  }
  .project-highlights {
    padding: 13px 7px 7px 7px;
  }
  .contact-cta, .cta, .process-cta {
    padding: 28px 0 28px 0;
    margin-bottom: 40px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  h3, .h3 { font-size: 1.07rem; }
  h4, .h4 { font-size: 1rem; }
  .text-image-section { flex-direction: column; gap: 16px; }
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 18px 8px 17px 10px;
  }
  #cookie-modal .cookie-modal-content {
    padding: 25px 6px 16px 8px;
    min-width: 0;
    max-width: 97vw;
  }
}

/* Playful & Dynamic Decorative Twists */
.section {
  position: relative;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  left: -24px; bottom: -16px;
  width: 54px; height: 54px;
  background: #ffeab7;
  opacity: .32;
  border-radius: 40% 58% 46% 40% / 32% 56% 32% 52%;
  z-index: 1;
  pointer-events: none;
  animation: morphy 18s ease-in-out infinite alternate;
}
@keyframes morphy {
  0%   { border-radius: 40% 58% 46% 40% / 32% 56% 32% 52%; }
  47%  { border-radius: 52% 40% 50% 36% / 40% 44% 63% 44%; }
  100% { border-radius: 30% 51% 38% 52% / 44% 40% 58% 34%; }
}
.card, .feature-item, .testimonial-card {
  position: relative;
  overflow: hidden;
}
.card::after, .feature-item::after {
  content: '';
  display: block;
  position: absolute;
  right: -14px; bottom: -10px;
  width: 38px; height: 38px;
  background: #FFeed8;
  opacity: .22;
  border-radius: 60% 36% 80% 10%;
  z-index: 0;
  pointer-events: none;
  animation: morphy 11s ease-in-out infinite alternate-reverse;
}
.testimonial-card::after {
  content: '';
  display: block;
  position: absolute;
  width: 17px; height: 17px;
  right: 14px; bottom: 13px;
  background: #FFC878;
  opacity: .28;
  border-radius: 70% 60% 78% 34%;
  z-index: 0;
}

/* Fun fonts on headings and micro-interactions */
h1, h2, h3, h4 {
  text-shadow: 0 3px 14px rgba(255,198,120,0.065);
}
.hero h1 {
  font-family: 'Montserrat', cursive, sans-serif;
  font-style: italic;
}
.btn-primary, .btn-secondary {
  box-shadow: 0 2px 11px 0 rgba(230,126,34,0.17);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: .01em;
}

/* Transitions & Animated Micro-interactions */
.button, .btn-primary, .btn-secondary, .main-nav a, .mobile-nav a {
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, transform 0.11s;
}
.section, .card, .feature-item, .testimonial-card {
  transition: box-shadow 0.14s, transform 0.13s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 40px 0 rgba(230,126,34,0.19);
  transform: scale(1.024) rotate(-0.7deg);
  z-index: 2;
}
.main-nav a.active, .mobile-nav a.active {
  background: var(--brand-secondary);
  color: #fff !important;
}

/* Spacing patterns per requirements */
.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; }

/* Ensuring no element overlaps */
.section, .card-container, .feature-item, .content-grid, .testimonial-card, .about-preview, .services-preview, .testimonials-preview, .company-details, .contact-instructions, .contact-cta {
  margin-bottom: 24px;
}

/* Accessibility extras */
:focus {
  outline: 2.5px dashed var(--brand-secondary);
  outline-offset: 2.5px;
}

/* Hide elements utility */
.d-none { display: none !important; }

/* Utility for visually hidden (for screenreader) */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
