:root {
  --bg: #edf2f4;
  --surface: #f5f7f8;
  --header-dark: #061f2d;
  --header-deep: #0b2737;
  --panel: #ffffff;
  --text: #0d1a28;
  --muted: #5d707c;
  --line: rgba(17, 31, 45, 0.08);
  --blue: #0d4a81;
  --cyan: #00c2d9;
  --teal: #1aa9b4;
  --green: #1fd0a3;
  --green-deep: #0e8e78;
  --shadow: 0 20px 40px rgba(8, 33, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: #041e2c;
  color: var(--text);
  cursor: default;
  caret-color: transparent;
}

body.modal-open {
  overflow: hidden;
}

a,
button,
input,
textarea,
select {
  caret-color: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #041e2c;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(90deg, #061f2d, #0c2c3e 55%, #0f3148);
  padding: 20px 32px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.nav-toggle,
.menu-toggle,
.mobile-menu {
  display: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 4px;
  margin-inline-start: 8px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  color: #fff;
}

.cta-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(25, 171, 179, 0.25);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 219px;
  justify-content: flex-end;
}

.brand-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.brand-icon img {
  max-width: 52px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand-name {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.06em;
}

.brand-copy small {
  font-size: 0.48rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1.3fr;
  align-items: center;
  gap: 18px;
  background: linear-gradient(90deg, rgba(4, 18, 29, 0.92), rgba(8, 31, 46, 0.9));
  padding: 36px 32px 28px;
  position: relative;
  min-height: 450px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 10%, rgba(0, 181, 205, 0.17), transparent 23%);
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 10px 8px 10px 0;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1.55;
  font-weight: 800;
  color: #fff;
  max-width: 510px;
}

.hero-text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  font-size: 1.04rem;
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 10px;
  padding: 0 22px;
  font-weight: 700;
  transition: transform 0.2s ease;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(90deg, #1fc7cf, #0aa4bf);
  color: #fff;
  box-shadow: 0 10px 20px rgba(18, 168, 197, 0.25);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn.small {
  min-height: 42px;
  padding: 0 18px;
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stats-list li {
  min-width: 132px;
}

.stats-list strong {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stats-list span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  width: min(100%, 720px);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(8, 25, 36, 0.2), rgba(6, 31, 45, 0.7)),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: 26px;
  top: 18px;
  z-index: 2;
  background: rgba(7, 30, 40, 0.75);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
}

.brand-badge {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 12px 18px 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: column;
}

.brand-badge img {
  width: 54px;
  height: 54px;
}

.brand-badge span {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b2c3c;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-badge small {
  color: #1e5e7d;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.highlights,
.about,
.services,
.why-care,
.process,
.faq-section,
.contact-panel {
  padding-inline: 32px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background: #edf2f3;
  padding-top: 18px;
  padding-bottom: 18px;
}

.highlight-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(10, 38, 53, 0.04);
}

.highlight-box span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 800;
  margin-bottom: 10px;
}

.highlight-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  align-items: center;
  background: #edf2f3;
  padding-top: 28px;
  padding-bottom: 20px;
}

.about-image {
  min-height: 260px;
}

.building-photo {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(7, 17, 24, 0.15), rgba(7, 17, 24, 0.3)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
}

.about-content h2,
.section-head h2,
.contact-info h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 2.6vw, 3rem);
  color: var(--header-deep);
  line-height: 1.2;
}

.about-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.services,
.why-care,
.process,
.faq-section {
  background: #edf2f3;
  padding-top: 22px;
  padding-bottom: 10px;
}

.service-request {
  background: transparent;
}

.section-head {
  margin-bottom: 18px;
}

.section-head.centered {
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(10, 38, 53, 0.05);
  border: 1px solid var(--line);
}

.service-thumb {
  position: relative;
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
}

.service-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 21, 36, 0.1), rgba(8, 21, 36, 0.45));
}

.thumb-one {
  background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

.thumb-two {
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

.thumb-three {
  background: url('https://images.unsplash.com/photo-1556157382-97eda2d62296?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

.thumb-four {
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

.service-arrow {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  color: white;
  font-size: 1.4rem;
  text-align: center;
  box-shadow: 0 10px 18px rgba(26, 169, 180, 0.28);
}

.service-card h3 {
  margin: 18px 18px 8px;
  font-size: 1.3rem;
  color: var(--header-deep);
}

.service-card p {
  margin: 0 18px 18px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.98rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-box {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 20px 18px;
  box-shadow: 0 10px 22px rgba(15, 42, 59, 0.04);
}

.why-box span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.why-box h3 {
  margin: 0 0 8px;
  color: var(--header-deep);
  font-size: 1.2rem;
}

.why-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.step-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px 12px 16px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(10, 38, 53, 0.04);
}

.step-num {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(90deg, #0a5e8f, #15b5bf);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  color: var(--header-deep);
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

.service-request {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 0;
  background: rgba(10, 22, 30, 0.06);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}

.service-request.visible {
  display: flex;
}

.service-request.is-hidden {
  display: none;
}

.service-request-panel {
  position: relative;
  width: min(440px, calc(100vw - 20px));
  max-height: 78vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: #f4f7f7;
  border: 1px solid rgba(11, 39, 55, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(7, 17, 24, 0.12);
  padding: 18px 18px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-request-panel::-webkit-scrollbar {
  display: none;
}

.service-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(13, 32, 42, 0.08);
  background: #f1f5f7;
  color: var(--header-deep);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
}

.service-close:hover {
  background: #eaf2f5;
  transform: scale(1.03);
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.request-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.request-form h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
  color: var(--header-deep);
}

.request-form label {
  display: block;
  margin-bottom: 12px;
}

.request-form label span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--header-deep);
}

.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  border: 1px solid rgba(13, 32, 42, 0.12);
  border-radius: 12px;
  background: #f7fafb;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  outline: none;
  border-color: rgba(18, 168, 197, 0.72);
  box-shadow: 0 0 0 4px rgba(18, 168, 197, 0.12);
}

.request-form textarea {
  resize: vertical;
  min-height: 86px;
}

.request-form button {
  width: auto;
  min-width: 150px;
  margin-top: 10px;
  display: block;
  margin-inline-start: auto;
}

.form-success {
  display: none;
  margin-top: 12px;
  border-radius: 10px;
  background: rgba(31, 208, 163, 0.12);
  color: #0d6d56;
  border: 1px solid rgba(31, 208, 163, 0.25);
  padding: 10px 12px;
  font-weight: 700;
}

.form-success.show {
  display: block;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 18px;
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  color: var(--header-deep);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 20px;
  background: linear-gradient(90deg, #0b2334, #0d3246);
  color: #fff;
  margin: 24px 32px 0;
  border-radius: 20px 20px 0 0;
  padding-top: 28px;
  padding-bottom: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
  padding: 26px 32px 40px;
  background: #041e2c;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.footer-brand strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.footer-brand small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  font-size: 0.52rem;
}

.quick-links h4,
.footer-contact h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.1rem;
}

.quick-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.quick-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.contact-links a {
  color: #fff;
  opacity: 0.9;
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-widget {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 20;
}

.chat-toggle {
  border: none;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 14px 24px rgba(7, 33, 46, 0.22);
  cursor: pointer;
}

.chat-panel {
  position: absolute;
  left: 0;
  bottom: 80px;
  width: min(360px, calc(100vw - 28px));
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(8, 21, 35, 0.18);
  border: 1px solid rgba(11, 39, 55, 0.08);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

.chat-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: linear-gradient(90deg, #062b3d, #0d3d56);
  color: #fff;
}

.chat-header h3 {
  margin: 0;
  font-size: 1rem;
}

.chat-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.chat-messages {
  max-height: 240px;
  overflow: auto;
  padding: 12px 12px 8px;
  background: #f7f9fb;
}

.message {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.message.bot {
  background: #eaf3f8;
  color: var(--text);
  border-radius: 12px 12px 12px 2px;
}

.message.user {
  margin-inline-start: auto;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  color: white;
  border-radius: 12px 12px 2px 12px;
}

.chat-form {
  display: flex;
  gap: 8px;
  padding: 10px 12px 12px;
  background: #fff;
}

.chat-form input {
  flex: 1;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(13, 32, 42, 0.12);
  padding: 0 12px;
}

.chat-send {
  min-height: 42px;
  padding-inline: 16px;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid,
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .forms-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .brand-wrap {
    min-width: 180px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px;
    z-index: 6;
    order: 1;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 300px);
    height: 100vh;
    background: rgba(7, 22, 35, 0.98);
    box-shadow: -12px 0 28px rgba(0, 0, 0, 0.28);
    padding: 68px 22px 24px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateX(105%);
    transition: transform 0.25s ease;
  }

  .mobile-menu a {
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
  }

  .close-menu {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    cursor: pointer;
  }

  .nav-toggle:checked ~ .mobile-menu {
    transform: translateX(0);
  }

  .nav-toggle:checked ~ .mobile-menu,
  .nav-toggle:checked ~ .menu-toggle {
    display: flex;
  }

  .topbar {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }

  .cta-top {
    order: 2;
    margin-inline-start: auto;
  }

  .brand-wrap {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 4px;
  }

  .lang-switch {
    order: 0;
  }

  .site-shell {
    max-width: 100%;
  }

  .hero,
  .highlights,
  .about,
  .services,
  .why-care,
  .process,
  .service-request,
  .faq-section,
  .contact-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .highlights,
  .about,
  .service-grid,
  .why-grid,
  .process-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .contact-panel {
    margin-left: 18px;
    margin-right: 18px;
  }
}
