﻿:root {
  --primary: #dc9b07;
  --primary-dark: #b07c05;
  --secondary: #0d1b46;
  --text: #1d2433;
  --muted: #6b7387;
  --surface: #f6f8fc;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 34px rgba(13, 27, 70, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
}

a {
  text-decoration: none;
}

.section-space {
  padding: 72px 0;
}

.section-soft {
  background: var(--surface);
}

.section-head {
  margin-bottom: 32px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  color: var(--secondary);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.top-strip {
  background: var(--secondary);
  color: #dfe6ff;
  font-size: 0.9rem;
}

.top-strip-wrap {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-contact a {
  color: #dfe6ff;
}

.top-cta {
  color: var(--secondary);
  background: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #ebeff8;
}

.navbar {
  padding: 4px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-weight: 700;
}

.brand-logo {
  height: 86px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link {
  color: #37415f;
  font-weight: 600;
  margin-left: 12px;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-dark);
}

.navbar .dropdown-menu {
  border: 1px solid #e3e9f7;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(13, 27, 70, 0.12);
  padding: 8px;
}

.navbar .dropdown-item {
  border-radius: 8px;
  font-weight: 500;
  color: #2d3d63;
  padding: 8px 12px;
}

.navbar .dropdown-item:hover {
  background: #f4f7ff;
  color: #0f245f;
}

.hero-section {
  position: relative;
  background: url("../images/head-background.jpg") center/cover no-repeat;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 54, 0.88), rgba(8, 18, 54, 0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.tagline {
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(220, 155, 7, 0.18);
  border: 1px solid rgba(220, 155, 7, 0.45);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
}

.hero-content p {
  margin: 18px 0 24px;
  max-width: 620px;
  color: #d8def4;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary-main,
.btn-light-main,
.btn-outline-main {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
}

.btn-primary-main {
  background: var(--primary);
  color: var(--secondary);
}

.btn-primary-main:hover {
  background: #f5b11b;
}

.btn-light-main {
  background: #fff;
  color: var(--secondary);
}

.btn-outline-main {
  border: 1px solid var(--primary);
  color: var(--primary-dark);
}

.quote-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote-card h2 {
  font-size: 1.3rem;
  margin: 0 0 14px;
  color: var(--secondary);
}

.quote-card form {
  display: grid;
  gap: 10px;
}

.quote-card input,
.quote-card select,
.quote-card button {
  border-radius: 10px;
  border: 1px solid #d7deec;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
}

.quote-card button {
  background: var(--primary);
  border: none;
  color: var(--secondary);
  font-weight: 700;
}

.check-list {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "\F26A";
  font-family: bootstrap-icons;
  position: absolute;
  left: 0;
  top: 0;
  color: #1ca64b;
}

.about-premium {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.about-kicker {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(13, 27, 70, 0.08);
  color: #0f245f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-title {
  margin: 14px 0 14px;
  color: var(--secondary);
  line-height: 1.3;
  font-size: clamp(1.6rem, 2.3vw, 2.15rem);
}

.about-copy {
  color: #445376;
  line-height: 1.85;
  margin: 0 0 10px;
}

.about-shape-wrap {
  position: relative;
  padding: 14px;
  border-radius: 36px;
  background: linear-gradient(140deg, rgba(220, 155, 7, 0.28), rgba(13, 27, 70, 0.18));
}

.about-shaped-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 42% 58% 63% 37% / 36% 37% 63% 64%;
  box-shadow: 0 16px 34px rgba(13, 27, 70, 0.2);
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 24px;
}

.about-metrics div {
  background: #ffffff;
  border: 1px solid #e4eaf8;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.about-metrics strong {
  display: block;
  color: #0f245f;
  font-size: 1.15rem;
}

.about-metrics span {
  color: #5d6a8d;
  font-size: 0.9rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(13, 27, 70, 0.08);
  height: 100%;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-body {
  padding: 18px;
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--secondary);
}

.service-body p {
  margin: 0 0 12px;
  color: var(--muted);
}

.service-body a {
  color: var(--primary-dark);
  font-weight: 600;
}

.testimonial-box {
  background: linear-gradient(165deg, #ffffff 0%, #f7f9ff 100%);
  border-radius: 22px;
  border: 1px solid #e4eaf8;
  box-shadow: 0 20px 40px rgba(13, 27, 70, 0.14);
  padding: 36px 34px;
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}

.testimonial-box p {
  margin: 0 0 16px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #2f3d63;
}

.quote-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 155, 7, 0.2);
  color: #8a6103;
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.testimonial-rating {
  color: #f2b50c;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-client {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.client-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f245f;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-client strong {
  display: block;
  color: #0f245f;
  font-size: 1rem;
  text-align: left;
}

.testimonial-client small {
  display: block;
  color: #6b7898;
  font-size: 0.85rem;
  text-align: left;
}

.premium-control {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(13, 27, 70, 0.72);
  opacity: 1;
}

.premium-control:hover {
  background: #0b1a48;
}

.premium-indicators {
  bottom: -56px;
}

.premium-indicators button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #9ea8c0;
  border: 0;
}

.premium-indicators .active {
  background-color: #0f245f;
}

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

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.counter-card {
  background: #fff;
  border: 1px solid #e9eef8;
  border-radius: 12px;
  padding: 24px 12px;
}

.counter-card h3 {
  margin: 0;
  color: var(--secondary);
  font-size: 2rem;
}

.counter-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.counter-section {
  background: radial-gradient(circle at 10% 20%, #12265f 0%, #0b163c 45%, #091233 100%);
}

.premium-counter-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 22px 12px 20px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.premium-counter-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 155, 7, 0.6);
  box-shadow: 0 18px 28px rgba(4, 10, 30, 0.35);
}

.counter-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 155, 7, 0.18);
  color: #ffd06e;
  border: 1px solid rgba(220, 155, 7, 0.45);
  font-size: 1.35rem;
}

.premium-counter-card h3 {
  color: #ffffff;
}

.premium-counter-card p {
  color: #dce4ff;
}

.office-card {
  background: linear-gradient(160deg, #ffffff 0%, #f7f9ff 100%);
  padding: 22px 20px;
  border-radius: 16px;
  height: 100%;
  border: 1px solid #dfe6f5;
  box-shadow: 0 10px 24px rgba(13, 27, 70, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.office-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--secondary);
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-card h3 i {
  color: var(--primary-dark);
}

.office-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 27, 70, 0.22);
  box-shadow: 0 18px 30px rgba(13, 27, 70, 0.14);
}

.office-meta {
  color: #425073;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.7;
}

.office-meta i {
  color: var(--primary-dark);
  margin-top: 4px;
}

.office-meta a {
  color: #2f3e61;
  font-weight: 500;
}

.map-wrap iframe {
  width: 100%;
  height: 430px;
}

.site-footer {
  background: #0b163c;
  color: #d9e1ff;
}

.site-footer .container {
  padding-left: 16px;
  padding-right: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 56px 0 36px;
}

.site-footer h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.45rem;
}

.footer-logo {
  width: min(220px, 100%);
  height: auto;
  display: block;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.footer-about {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.8;
  color: #edf2ff;
  max-width: 480px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: #d9e1ff;
  font-size: 1.02rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #edf2ff;
  font-size: 1.02rem;
  line-height: 1.7;
}

.footer-contact-list i {
  color: var(--primary);
  font-size: 1.05rem;
  margin-top: 4px;
}

.footer-social {
  margin-top: 18px;
}

.footer-social h5 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.08rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.25s ease;
}

.social-icons a i {
  font-size: 1rem;
}

.social-icons a:hover {
  background: var(--primary);
  color: #081236;
  transform: translateY(-2px);
}

.copyright {
  border-top: 1px solid rgba(217, 225, 255, 0.2);
  text-align: center;
  padding: 14px 16px;
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #081236;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.float-action {
  position: fixed;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  z-index: 98;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  animation: floatPulse 2.2s ease-in-out infinite;
}

.float-action:hover {
  transform: translateY(-2px);
}

@keyframes floatPulse {
  0% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24), 0 0 0 0 rgba(220, 155, 7, 0.34);
  }
  70% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24), 0 0 0 10px rgba(220, 155, 7, 0);
  }
  100% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24), 0 0 0 0 rgba(220, 155, 7, 0);
  }
}

.float-whatsapp {
  bottom: 142px;
  background: #25d366;
}

.float-call {
  bottom: 86px;
  background: #0f245f;
}

@media (max-width: 991px) {
  .top-cta {
    display: none;
  }

  .section-space {
    padding: 56px 0;
  }

  .hero-section {
    min-height: 560px;
    padding: 40px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 42px 0 26px;
    gap: 22px;
  }
}

@media (max-width: 767px) {
  .brand-logo {
    height: 68px;
  }

  .top-strip-wrap {
    justify-content: center;
    padding: 8px 0;
  }

  .top-contact {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .quote-card {
    padding: 18px;
  }

  .section-head h2 {
    font-size: 1.55rem;
  }

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

  .gallery-grid img {
    height: 210px;
  }

  .about-shaped-image {
    height: 360px;
    border-radius: 26px;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .site-footer h4 {
    font-size: 1.35rem;
  }

  .footer-logo {
    width: min(200px, 100%);
  }

  .footer-about,
  .footer-contact-list li,
  .site-footer a {
    font-size: 1rem;
    line-height: 1.75;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  .float-action {
    right: 14px;
    width: 56px;
    height: 56px;
    animation-duration: 1.9s;
  }

  .float-whatsapp {
    bottom: 156px;
  }

  .float-call {
    bottom: 86px;
  }

  .float-action i {
    font-size: 1.2rem;
  }

  .testimonial-box {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .testimonial-box p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .premium-control {
    width: 38px;
    height: 38px;
  }

  .premium-indicators {
    bottom: -46px;
  }

  .counter-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .site-footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .copyright {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.page-hero {
  background: linear-gradient(110deg, #0b163c, #182a67);
  color: #fff;
  padding: 76px 0;
}

.page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-hero p {
  margin: 0;
  color: #d6def8;
}

.inner-title {
  color: var(--secondary);
  margin-bottom: 12px;
}

.info-card,
.mini-card,
.faq-item,
.contact-panel,
.cta-banner {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e7ecf7;
}

.info-card,
.mini-card,
.faq-item {
  padding: 20px;
  height: 100%;
}

.info-card h3,
.mini-card h4,
.faq-item h4 {
  color: var(--secondary);
  margin-top: 0;
}

.info-card h3 i,
.mini-card i {
  color: var(--primary-dark);
  margin-right: 6px;
}

.about-mvv-section .info-card {
  border: 1.5px solid rgba(220, 155, 7, 0.55);
  background: linear-gradient(165deg, #ffffff 0%, #fff9ec 100%);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-mvv-section .info-card:hover {
  transform: translateY(-7px);
  border-color: #dc9b07;
  box-shadow: 0 16px 30px rgba(220, 155, 7, 0.28);
}

.about-mvv-section .info-card h3 i {
  color: #c88b04;
}

.mini-card i {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 8px;
}

.mini-card p,
.info-card p,
.faq-item p {
  margin: 0;
  color: #49577b;
}

.cta-banner {
  text-align: center;
  padding: 36px 20px;
  background: linear-gradient(120deg, #0d1b46, #173177);
  color: #fff;
  border: none;
}

.cta-banner h2 {
  margin: 0 0 10px;
}

.cta-banner p {
  margin: 0 0 16px;
  color: #d6def8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.contact-panel {
  padding: 22px;
}

.contact-panel h3 {
  margin-top: 0;
  color: var(--secondary);
}

.contact-panel p {
  color: #465473;
}

.contact-panel ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-panel li {
  color: #354466;
}

.contact-panel i {
  color: var(--primary-dark);
  margin-right: 6px;
}

.contact-panel a {
  color: #354466;
}

.quote-card textarea {
  border-radius: 10px;
  border: 1px solid #d7deec;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.mini-map {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
}

.mini-map iframe {
  width: 100%;
  height: 240px;
}

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

.contact-faq-section .faq-premium-wrap {
  background: linear-gradient(155deg, #ffffff 0%, #fff8e9 100%);
  border: 1px solid rgba(220, 155, 7, 0.34);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 16px 34px rgba(13, 27, 70, 0.12);
}

.contact-faq-section .faq-premium-head {
  max-width: 700px;
  margin: 0 auto 24px;
}

.contact-faq-section .faq-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(220, 155, 7, 0.16);
  border: 1px solid rgba(220, 155, 7, 0.4);
  color: #8a6202;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-faq-section .faq-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #e1e8f8;
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 18px rgba(13, 27, 70, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-faq-section .faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 155, 7, 0.65);
  box-shadow: 0 14px 24px rgba(13, 27, 70, 0.12);
}

.contact-faq-section .faq-badge {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(160deg, #f6b725 0%, #d58f01 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-faq-section .faq-content {
  min-width: 0;
}

.contact-faq-section .faq-content h4 {
  margin: 0;
  color: #132551;
  font-size: 1.03rem;
}

.contact-faq-section .faq-content p {
  margin-top: 8px;
}

.service-layout-wrap {
  background: #fff;
  border: 1px solid #e5eaf7;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(13, 27, 70, 0.08);
}

.service-main-image {
  border-radius: 16px;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-detail-block {
  background: #fff;
  border: 1px solid #e6ebf8;
  border-radius: 14px;
  padding: 20px;
  color: #425075;
  line-height: 1.85;
}

.price-table-wrap {
  border: 1px solid #e6ebf8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(13, 27, 70, 0.07);
}

.price-table thead th {
  background: #0f245f;
  color: #fff;
  border: none;
}

.price-table tbody td {
  color: #38476d;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-layout-wrap {
    padding: 16px;
  }

  .service-main-image {
    height: 250px;
  }
}


