/* =====================================================
   1. RESET + BASE
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  background: #ffffff;
  color: #222222;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

/* =====================================================
   2. CONTAINER
===================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   3. TYPOGRAPHY
===================================================== */

h1,
h2,
h3 {
  color: #0f172a;
}

.section-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* =====================================================
   4. HEADER (CONVERSION FOCUSED)
===================================================== */

.header {
  text-align: center;
  padding: 60px 20px;
}

.logo {
  width: 240px;
  height: auto;
  margin-bottom: 20px;
}

.header h1 {
  font-size: 2.25rem;
  margin-bottom: 10px;
}

.header p {
  color: #555555;
  margin-bottom: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* PHONE CTA */
.header-phone {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 10px 0 25px;
}

.header-phone a {
  color: #0ea5e9;
  font-weight: 800;
  transition: color 0.2s ease;
}

.header-phone a:hover {
  color: #0369a1;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  background: #0ea5e9;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #0369a1;
}

/* =====================================================
   5. SECTIONS
===================================================== */

section {
  padding: 50px 0;
}

/* =====================================================
   6. INTRO BOX (SEO + SALES)
===================================================== */

.intro-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 40px;
  text-align: center;
}

.intro-box p {
  margin-bottom: 18px;
  color: #444444;
}

.intro-box p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   7. GRID SYSTEM
===================================================== */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* =====================================================
   8. CARDS (SERVICES & TESTIMONIALS)
===================================================== */

.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 5px solid #0ea5e9;
  border-radius: 10px;
  padding: 24px;
  transition:
    transform 0.2s ease,
    border-left-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-left-color: #0369a1;
}

.service-card h3 {
  font-size: 1.15rem;
  color: #111827;
  margin-bottom: 8px;
}

/* Specialized formatting for nested testimonial markup */
.service-card p {
  color: #4b5563;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

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

.service-card p strong {
  color: #1f2937;
}

/* =====================================================
   9. IMAGES (FIXED RESPONSIVE CENTERING)
===================================================== */

.center-image-section {
  text-align: center;
  padding: 20px 0;
}

.center-image {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
}

/* =====================================================
   10. SIMPLE CENTER TEXT BLOCK
===================================================== */

.center-bold-text {
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #0f172a;
}

/* =====================================================
   11. FOOTER
===================================================== */

.footer {
  text-align: center;
  padding: 40px 20px;
  color: #666666;
  border-top: 1px solid #e5e7eb;
}

.footer a {
  color: #0ea5e9;
}

/* =====================================================
   12. RESPONSIVE MEDIA QUERIES
===================================================== */

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

  .header {
    padding: 40px 15px;
  }

  .header h1 {
    font-size: 1.85rem;
  }
}

@media (max-width: 600px) {
  .header-phone {
    font-size: 1.2rem;
  }

  .intro-box {
    padding: 25px;
  }

  section {
    padding: 35px 0;
  }

  .service-card {
    padding: 16px;
  }
}
