
h1, h2, h3, h4, h5 {
    font-weight: lighter !important;
    /*margin: 20px auto !important;*/
}

h2 {
    margin: 20px auto !important;
}


/* ===== Global Styles ===== */
:root {
  --primary-color: #0066cc;
  --secondary-color: #004d99;
  --accent-color: #ff6600;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --success-color: #28a745;
  --white: #ffffff;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif !important;
  /*font-weight: 700;*/
  line-height: 1.3;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Hero Section ===== */
.hero-section {
  padding: 100px 0;
  /*background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/img/hero-bg.jpg') no-repeat center center/cover;*/
  color: var(--white);
  position: relative;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-section .cta-buttons .btn {
  margin-right: 15px;
  margin-bottom: 15px;
}

/* ===== Features Section ===== */
.features-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.feature-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 102, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* ===== Services Section ===== */
.services-section {
  padding: 80px 0;
}

.service-tabs .nav-tabs {
  border-bottom: 2px solid var(--light-gray);
  justify-content: center;
  margin-bottom: 40px;
}

.service-tabs .nav-link {
  color: var(--dark-color);
  font-weight: 600;
  border: none;
  padding: 12px 25px;
  margin: 0 5px;
  border-radius: 50px;
  transition: var(--transition);
}

.service-tabs .nav-link:hover {
  color: var(--primary-color);
}

.service-tabs .nav-link.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-benefits li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.service-benefits i {
  color: var(--success-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* ===== Technology Section ===== */
.technology-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.tech-features {
  margin-top: 30px;
}

.tech-item {
  display: flex;
  margin-bottom: 25px;
}

.tech-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.tech-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* ===== Service Area Section ===== */
.service-area-section {
  padding: 80px 0;
}

.city-card {
  background-color: var(--white);
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.city-card:hover {
  transform: translateY(-5px);
  background-color: var(--primary-color);
  color: var(--white);
}

.city-card h4 {
  margin: 0;
  font-size: 1.1rem;
}

/* ===== Map Section ===== */
.map-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  /*margin-bottom: 30px;*/
}

.weather-widget {
  margin-bottom: 30px;
}

.contact-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 20px;
}

/* ===== Form Styles ===== */
.form-control {
  height: 50px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding-left: 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 70px 0;
    text-align: center;
  }
  
  .hero-section .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  
  .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
    padding-bottom: 15px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-box {
    padding: 20px;
  }
}
    

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-header .subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  text-align: left;
  align-items: left;
}

.service-card h2 {
    align-items: left;
    font-size: 1.25rem;
    text-align: left;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #c7d2fe;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e7ff;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: #4f46e5;
}

.service-card h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card p {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #475569;
  font-size: 0.9375rem;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #a5b4fc;
}

.card-hover-indicator {
  display: flex;
  align-items: center;
  color: #4f46e5;
  font-weight: 500;
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

.card-hover-indicator svg {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.service-card:hover .card-hover-indicator {
  transform: translateX(4px);
}

.service-card:hover .card-hover-indicator svg {
  transform: translateX(2px);
}

@media (max-width: 768px) {
  .services-section {
    padding: 3rem 1rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Modern Hero Section */
.modern-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

.hero-lead {
  font-size: 1.25rem;
  color: #4b5563;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button svg {
  margin-right: 0.5rem;
}

.cta-button.primary {
  background: #3B82F6;
  color: white;
}

.cta-button.primary:hover {
  background: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.5), 0 2px 4px -1px rgba(59, 130, 246, 0.06);
}

.cta-button.secondary {
  background: white;
  color: #3B82F6;
  border: 2px solid #3B82F6;
}

.cta-button.secondary:hover {
  background: #EFF6FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1), 0 2px 4px -1px rgba(59, 130, 246, 0.06);
}

/* Premium Services Section */
.premium-services {
  padding: 5rem 0;
  background: white;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-intro h2 {
  font-size: 2.25rem;
  color: #1F2937;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6B7280;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #F9FAFB;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #3B82F6;
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: #1F2937;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #6B7280;
  line-height: 1.6;
}

/* Quality Assurance Section */
.quality-assurance {
  padding: 5rem 1rem;
  background: #f9fafb;
}

.quality-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.quality-text h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
  line-height: 1.3;
}

.quality-text p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quality-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quality-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #374151;
  font-size: 1rem;
}

.quality-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1rem;
}

.quality-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quality-image img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.quality-image:hover img {
  transform: scale(1.03);
}


/* Mobile Service Section */
.mobile-service {
  padding: 5rem 0;
  background: white;
}

.mobile-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.mobile-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mobile-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.mobile-image:hover img {
  transform: scale(1.03);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4B5563;
}

.benefit-item svg {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero-content,
  .quality-content,
  .mobile-content {
    flex-direction: column;
  }
  
  .hero-text,
  .quality-text,
  .mobile-text {
    order: 1;
  }
  
  .hero-image,
  .quality-image,
  .mobile-image {
    order: 2;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    padding: 2rem 0;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 0;
  background: #f8fafc;
}

.features-grid-choose {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon-choose {
  width: 50px;
  height: 50px;
  background: #e0f2fe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: white;
}

.section-header h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.section-header .subtitle {
  color: #64748b;
  font-size: 1rem;
}

.testimonials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 45%;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  font-style: italic;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.1rem;
}

.author-info h5 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: #64748b;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .testimonials-row {
    flex-direction: column;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }
}


/* Location & Contact Section */
.location-contact {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.location-header {
  text-align: center;
  margin-bottom: 3rem;
}

.location-header h2 {
  font-size: 2.25rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.location-header .subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.map-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.map-container {
  height: 500px;
  position: relative;
}

.location-info {
  padding: 2rem;
  background: #f8fafc;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1rem;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.info-item p, .info-item a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-item a:hover {
  color: #3b82f6;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #3b82f6;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.5), 0 2px 4px -1px rgba(59, 130, 246, 0.06);
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  padding-top: 0px;
  padding-bottom: 0px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .location-wrapper {
    grid-template-columns: 1fr;
  }
  
  .map-card {
    order: 1;
  }
  
  .contact-card {
    order: 2;
  }
}

@media (max-width: 768px) {
  .location-contact {
    padding: 3rem 1rem;
  }
  
  .location-header h2 {
    font-size: 1.8rem;
  }
  
  .info-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
  }
}

/* Quality Assurance / Info Sections */
.quality-assurance {
  padding: 5rem 1rem;
  background: #f9fafb;
}

.quality-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.quality-text h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
  line-height: 1.3;
}

.quality-text p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quality-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quality-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #374151;
  font-size: 1rem;
}

.quality-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1rem;
}

.quality-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quality-image img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.quality-image:hover img {
  transform: scale(1.03);
}


/* Safe Repairs Section (Shared Style with Quality Assurance) */
.safe-repair-section {
  padding: 5rem 1rem;
  background: #ffffff;
}

.safe-repair-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.safe-repair-text h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.safe-repair-text p {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #4b5563;
  line-height: 1.6;
  font-size: 1rem;
}

.safe-repair-text p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%2310B981' stroke-width='3' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1rem;
}

