/* ========================================
   KLEM & KEYS REALTY - SERVICES PAGE CSS
   Professional, Modern, User-Friendly
======================================== */

/* ========================================
   SERVICES HERO SECTION
======================================== */

.services-hero-section {
  position: relative;
  padding: 180px 0 100px;
  background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2400');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 22, 35, 0.95) 0%, rgba(11, 22, 35, 0.8) 100%);
  z-index: 1;
}

.services-hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(184, 146, 59, 0.15) 0%, transparent 60%);
}

.services-hero-section .container {
  position: relative;
  z-index: 2;
}

.services-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.services-hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ========================================
   SECTION STYLES
======================================== */

.section {
  padding: 100px 0;
}

.section-badge {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(184, 146, 59, 0.3);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   SERVICES OVERVIEW SECTION
======================================== */

.services-overview-section {
  background: var(--white);
}

.service-main-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  border: 2px solid var(--border-gray);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(11, 45, 77, 0.08);
  display: flex;
  flex-direction: column;
}

.service-main-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(11, 45, 77, 0.15);
}

.service-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-hover));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-main-card:hover::before {
  transform: scaleX(1);
}

.service-main-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 2.2rem;
  box-shadow: 0 10px 30px rgba(11, 45, 77, 0.25);
  transition: all 0.4s ease;
}

.service-main-card:hover .service-main-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
  transform: rotateY(360deg) scale(1.1);
}

.service-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold-primary);
  opacity: 0.1;
  line-height: 1;
  transition: all 0.4s ease;
}

.service-main-card:hover .service-number {
  opacity: 0.2;
  transform: scale(1.1);
}

.service-main-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.service-main-description {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.service-features li i {
  color: var(--gold-primary);
  font-size: 1rem;
}

.btn-service-details {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(11, 45, 77, 0.25);
  border: 2px solid transparent;
  margin-top: auto;
}

.btn-service-details:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
  color: var(--white);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(184, 146, 59, 0.3);
}

.btn-service-details i {
  transition: transform 0.3s ease;
}

.btn-service-details:hover i {
  transform: translateX(5px);
}

/* ========================================
   DETAILED SERVICES SECTION
======================================== */

.detailed-services-section {
  background: var(--off-white);
}

.service-detail-card {
  background: var(--white);
  border-radius: 24px;
  padding: 4rem;
  margin-bottom: 4rem;
  box-shadow: 0 20px 60px rgba(11, 45, 77, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.service-detail-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 30px 80px rgba(11, 45, 77, 0.12);
}

.service-detail-card:last-child {
  margin-bottom: 0;
}

.service-detail-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-detail-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(11, 45, 77, 0.9));
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

.service-header {
  margin-bottom: 2rem;
}

.service-detail-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(184, 146, 59, 0.3);
}

.service-detail-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.service-detail-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-detail-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Process Steps */

.service-process {
  margin: 2.5rem 0;
}

.process-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 16px;
  border-left: 4px solid var(--gold-primary);
  transition: all 0.3s ease;
}

.process-step:hover {
  background: var(--white);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(11, 45, 77, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(184, 146, 59, 0.3);
}

.step-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Investment Features */

.investment-features {
  margin: 2.5rem 0;
}

.investment-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(184, 146, 59, 0.3);
}

.feature-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.service-stats {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0;
}

.service-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 16px;
  flex: 1;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-stats .stat-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.service-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.service-stats .stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Development Phases */

.development-phases {
  margin: 2.5rem 0;
}

.phase-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}

.phase-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.phase-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-gray);
  z-index: 1;
}

.phase {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.phase-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(11, 45, 77, 0.3);
  border: 4px solid var(--white);
  /* Remove flex specific props */
}

.phase-content {
  min-width: 0;
  /* Ensures content wraps inside grid cell */
}

.phase-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.phase-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Management Services */

.management-services {
  margin: 2.5rem 0;
}

.management-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}

.management-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.management-feature:hover {
  background: var(--white);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(11, 45, 77, 0.08);
}

.management-feature i {
  color: var(--gold-primary);
  font-size: 1.5rem;
  min-width: 30px;
}

.management-feature h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.25rem;
}

.management-feature p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Service CTA Buttons */

.service-cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.btn-service-primary {
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(184, 146, 59, 0.3);
}

.btn-service-primary:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(11, 45, 77, 0.25);
}

.btn-service-secondary {
  padding: 16px 40px;
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--border-gray);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-service-secondary:hover {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(11, 45, 77, 0.2);
}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
  background: var(--white);
}

.accordion {
  --bs-accordion-border-color: var(--border-gray);
  --bs-accordion-border-radius: 16px;
  --bs-accordion-inner-border-radius: 14px;
  --bs-accordion-btn-padding-x: 2rem;
  --bs-accordion-btn-padding-y: 1.5rem;
  --bs-accordion-body-padding-x: 2rem;
  --bs-accordion-body-padding-y: 1.5rem;
  --bs-accordion-active-color: var(--blue-dark);
  --bs-accordion-active-bg: rgba(184, 146, 59, 0.05);
  --bs-accordion-btn-focus-border-color: var(--gold-primary);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(184, 146, 59, 0.25);
}

.accordion-button {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(11, 45, 77, 0.05);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(184, 146, 59, 0.05), rgba(184, 146, 59, 0.1));
  border-bottom: 2px solid var(--gold-primary);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b2d4d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b8923b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--off-white);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

/* ========================================
   SERVICE CTA SECTION
======================================== */

.service-cta-section {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?q=80&w=2400');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.service-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 45, 77, 0.93) 0%, rgba(26, 74, 122, 0.90) 100%);
  z-index: 1;
}

.service-cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
  color: var(--white);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 35px rgba(184, 146, 59, 0.4);
  border: 2px solid transparent;
}

.btn-cta-primary:hover {
  background: var(--white);
  color: var(--gold-primary);
  border-color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
  padding: 18px 45px;
  background: transparent;
  color: var(--white);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */

@media (max-width: 991px) {
  .section {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .service-main-card {
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .service-main-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

@media (max-width: 991px) {
  .service-main-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 991px) {
  .service-detail-card {
    padding: 3rem;
  }
}

@media (max-width: 991px) {
  .service-detail-image img {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .service-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {

  .btn-service-primary,
  .btn-service-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Landscape */

@media (max-width: 767px) {
  .services-hero-section {
    padding: 150px 0 80px;
    background-attachment: scroll;
  }
}

@media (max-width: 767px) {
  .services-hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .services-hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .section-description {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .service-detail-card {
    padding: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .service-detail-image img {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .service-detail-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .service-detail-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {

  .process-step,
  .phase,
  .investment-feature,
  .management-feature {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {

  .step-number,
  .phase-icon,
  .feature-icon {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .service-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .phase-timeline::before {
    left: 30px;
  }
}

@media (max-width: 767px) {
  .accordion-button {
    font-size: 1rem;
    padding: 1.25rem;
  }
}

@media (max-width: 767px) {
  .accordion-body {
    font-size: 0.95rem;
    padding: 1.25rem;
  }
}

@media (max-width: 767px) {
  .service-cta-section {
    padding: 80px 0;
    background-attachment: scroll;
  }
}

@media (max-width: 767px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 16px 35px;
  }
}

/* Mobile Portrait */

@media (max-width: 575px) {
  .services-hero-section {
    padding: 120px 0 60px;
  }
}

@media (max-width: 575px) {
  .services-hero-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .services-hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .service-main-card {
    padding: 1.75rem;
  }
}

@media (max-width: 575px) {
  .service-number {
    font-size: 3rem;
  }
}

@media (max-width: 575px) {
  .service-main-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 575px) {
  .service-main-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .btn-service-details {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .service-detail-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .service-detail-image img {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .service-detail-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 575px) {
  .service-detail-text {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .service-stats .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .cta-description {
    font-size: 1.1rem;
  }
}