:root {
  /* Company logo colors */
  --color-primary: #0F2A7A;
  --color-primary-dark: #0A1E5C;
  --color-primary-light: #1A3A9E;
  --color-accent: #4CD137;
  --color-accent-dark: #3DB828;
  --color-accent-light: #6EDB5A;
  
  /* Backgrounds */
  --color-bg: #ffffff;
  --color-bg-light: #F5F7FA;
  --color-bg-offwhite: #EBEEF2;
  
  /* Text colors */
  --color-text: #0F2A7A;
  --color-text-muted: #5A6A8A;
  --color-text-light: #8A9AB8;
  
  /* Border colors */
  --color-border: #D4DCE8;
  --color-border-light: #E8EDF4;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --section-padding: 100px;
  --section-padding-mobile: 64px;

  /* Sharp edges - minimal border radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;

  /* Subtle shadows */
  --shadow-sm: 0 1px 3px rgba(15, 42, 122, 0.08);
  --shadow-md: 0 10px 26px rgba(15, 42, 122, 0.10);
  --shadow-lg: 0 18px 46px rgba(15, 42, 122, 0.12);

  /* Smooth animations */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons - Sharp edges, modern architectural feel */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

/* Green primary buttons */
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(76, 209, 55, 0.30);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 209, 55, 0.35);
}

/* Blue or outline secondary buttons */
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

/* Blue primary-style button */
.btn-dark {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(15, 42, 122, 0.30);
}
.btn-dark:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 42, 122, 0.35);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}
.header.scrolled { background: rgba(255,255,255,0.96); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-text);
}

.logo-text {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
}

/* Accent the suffix, but keep the business name in normal text color */
.logo-text > span { color: var(--color-accent); font-weight: 600; white-space: nowrap; }

/* Dark footer: ensure the whole name (not just the suffix) is visible */
.footer .logo {
  color: #fff;
  flex-wrap: nowrap;
  align-items: flex-start;
  min-width: 0;
  max-width: 100%;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 18px rgba(30, 37, 48, 0.10);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav a:hover {
  background: rgba(15, 42, 122, 0.06);
  color: var(--color-primary);
}
.nav a.active {
  background: rgba(76, 209, 55, 0.12);
  color: var(--color-primary);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-primary);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.header-phone svg { width: 18px; height: 18px; fill: var(--color-accent); }

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  position: relative;
  cursor: pointer;
}
.mobile-menu-btn span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-btn span:nth-child(1){ top: 15px; }
.mobile-menu-btn span:nth-child(2){ top: 21px; }
.mobile-menu-btn span:nth-child(3){ top: 27px; }
.mobile-menu-btn.active span:nth-child(1){ top: 21px; transform: rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2){ opacity: 0; }
.mobile-menu-btn.active span:nth-child(3){ top: 21px; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 90px;
  color: #fff;
  overflow: hidden;
  background: var(--color-primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(30,37,48,0.92) 0%, rgba(30,37,48,0.78) 60%),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2200&q=70");
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(1.05);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--color-accent); }

.hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero-subtext {
  margin: 0 0 22px;
  font-size: 17px;
  color: rgba(255,255,255,0.86);
  max-width: 58ch;
}
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 800;
  color: rgba(255,255,255,0.95);
}
.hero-phone svg { width: 18px; height: 18px; fill: var(--color-accent); }

.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-stat {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  min-width: 160px;
}
.hero-stat-number {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}
.hero-stat-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.86); }

/* Trust banner */
.trust-banner {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}
.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  font-weight: 800;
  color: var(--color-text-muted);
  font-size: 13px;
}
.trust-item svg { width: 18px; height: 18px; fill: var(--color-accent); }

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.section-header p {
  margin: 0 auto;
  max-width: 70ch;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Services */
.services {
  background: var(--color-bg);
  padding: var(--section-padding) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: rgba(76, 209, 55, 0.12);
  border: 1px solid rgba(76, 209, 55, 0.20);
  margin-bottom: 14px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.service-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 14px;
}
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-weight: 800;
  font-size: 13px;
  color: var(--color-primary);
}
.learn-more svg { width: 18px; height: 18px; fill: var(--color-accent); transition: var(--transition); }
.service-card:hover .learn-more svg { transform: translateX(2px); }

/* Why choose (dark) */
.why-choose {
  background: var(--color-primary);
  padding: var(--section-padding) 0;
  color: #fff;
}
.why-choose .section-header h2 { color: #fff; }
.why-choose .section-header p { color: rgba(255,255,255,0.72); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--color-accent);
}
.why-number {
  font-size: 46px;
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 14px;
}
.why-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; color: #fff; }
.why-card p { margin: 0; color: rgba(255,255,255,0.72); font-weight: 600; font-size: 14px; }

/* Values section override (light background) */
.values-section .why-card {
  background: #fff;
  border: 1px solid var(--color-border);
}
.values-section .why-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}
.values-section .why-card h3 { color: var(--color-text); }
.values-section .why-card p { color: var(--color-text-muted); }
.values-section .why-number { opacity: 0.25; }

/* Testimonials */
.testimonials {
  background: var(--color-bg);
  padding: var(--section-padding) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  border: 1px solid var(--color-border-light);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-rating svg { width: 18px; height: 18px; fill: var(--color-accent); }
.testimonial-quote { font-size: 54px; line-height: 0.9; color: var(--color-accent); opacity: 0.55; margin: 8px 0 10px; font-family: Georgia, serif; }
.testimonial-text { margin: 0 0 16px; color: var(--color-text); font-weight: 650; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--color-primary);
}
.testimonial-name { margin: 0; font-weight: 900; }
.testimonial-location { margin: 0; color: var(--color-text-muted); font-weight: 700; font-size: 13px; }

/* Projects */
.projects {
  background: var(--color-bg-light);
  padding: var(--section-padding) 0;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 22px;
}
.project-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--color-accent); }
.project-image { position: relative; height: 260px; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.project-card:hover .project-image img { transform: scale(1.05); }
.project-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.project-content { padding: 22px; }
.project-content h3 { margin: 0 0 8px; font-size: 18px; font-weight: 900; letter-spacing: -0.02em; }
.project-content p { margin: 0; color: var(--color-text-muted); font-weight: 650; }

/* Page header (inner pages) */
.page-header {
  position: relative;
  padding: 78px 0 64px;
  background: var(--color-primary);
  color: #fff;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(30,37,48,0.92) 0%, rgba(30,37,48,0.78) 60%),
    url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?auto=format&fit=crop&w=2200&q=70");
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(1.05);
}
.page-header-content { position: relative; z-index: 1; max-width: 72ch; }
.page-header h1 { margin: 0 0 10px; font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.03em; }
.page-header p { margin: 0; color: rgba(255,255,255,0.82); font-weight: 650; }

/* About section */
.about-section { padding: var(--section-padding) 0; background: var(--color-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 420px; object-fit: cover; }
.about-content h2 { margin: 0 0 12px; font-size: 30px; letter-spacing: -0.03em; }
.about-content p { margin: 0 0 14px; color: var(--color-text-muted); font-weight: 600; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.about-feature { display: flex; gap: 10px; align-items: flex-start; }
.about-feature svg { width: 22px; height: 22px; fill: var(--color-accent); margin-top: 2px; }
.about-feature span { font-weight: 800; color: var(--color-text); font-size: 14px; }

/* Contact section */
.contact-section { background: var(--color-bg-light); padding: var(--section-padding) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 44px; align-items: start; }
.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.contact-form-wrapper h2 { margin: 0 0 8px; font-size: 28px; letter-spacing: -0.02em; }
.contact-form-wrapper > p { margin: 0 0 24px; color: var(--color-text-muted); font-weight: 650; }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: grid; gap: 8px; }
.form-group label { font-weight: 800; font-size: 13px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-light);
  outline: none;
  transition: var(--transition);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  background: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(76, 209, 55, 0.15);
}
.response-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-weight: 750;
}
.response-note svg { width: 18px; height: 18px; fill: var(--color-accent); }

.contact-info-cards { display: grid; gap: 16px; }
.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-card-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: rgba(76, 209, 55, 0.12);
  border: 1px solid rgba(76, 209, 55, 0.20);
  display: grid;
  place-items: center;
}
.contact-card-icon svg { width: 22px; height: 22px; fill: var(--color-accent); }
.contact-card-content h4 { margin: 0 0 6px; font-size: 14px; font-weight: 900; }
.contact-card-content p, .contact-card-content a { margin: 0; color: var(--color-text-muted); font-weight: 650; font-size: 14px; }
.contact-card-content a:hover { color: var(--color-accent-dark); }

/* Map embed (kept from earlier fix if used) */
.map-section { background: var(--color-bg-light); padding: 0 0 var(--section-padding); }
.map-embed {
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  background: #e2e8f0;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { margin: 0 0 10px; font-size: clamp(24px, 3.2vw, 40px); letter-spacing: -0.03em; }
.cta-section p { margin: 0 auto 18px; max-width: 70ch; color: rgba(255,255,255,0.82); font-weight: 650; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

/* Footer */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.86);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  gap: 22px;
}
.footer-brand .logo { margin-bottom: 16px; color: #fff; }
.footer p { margin: 0; color: rgba(255,255,255,0.72); font-weight: 650; }
.footer-col h4 { margin: 0 0 12px; color: #fff; font-weight: 900; font-size: 14px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.74); font-weight: 650; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
}
.footer-social a:hover { background: rgba(255,255,255,0.10); }
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.85); }

/* Responsive */
@media (max-width: 980px) {
  .trust-list { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .header-phone { display: none; }
  .mobile-menu-btn { display: inline-block; }
  .nav {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(226,232,240,0.9);
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }
  .nav.active { display: flex; }
  .nav a { width: 100%; }
}

@media (max-width: 520px) {
  .hero { padding: 90px 0 72px; }
  .hero-stat { min-width: 140px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services { padding: var(--section-padding-mobile) 0; }
  .projects { padding: var(--section-padding-mobile) 0; }
  .testimonials { padding: var(--section-padding-mobile) 0; }
  .why-choose { padding: var(--section-padding-mobile) 0; }
  .about-section { padding: var(--section-padding-mobile) 0; }
  .contact-section { padding: var(--section-padding-mobile) 0; }
}

