  :root {
    --primary: #1a365d;
    --primary-dark: #0f2544;
    --accent: #ffd700;
    --accent-alt: #38b2ac;
    --bg-light: #f8fafc;
    --text: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

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

  .btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
  }

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

  .btn-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }

  .btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }

  .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
  }

  .btn-accent {
    background-color: var(--accent-alt);
    color: var(--white);
  }

  .btn-accent:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }

  /* Navbar Styles */
  .navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
  }

  .nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
  }

  .nav-item {
    margin-left: 30px;
  }

  .nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: var(--accent-alt);
  }

  .call-btn {
    background-color: var(--accent);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    margin-left: 20px;
  }

  .call-btn:hover {
    background-color: var(--primary);
    color: var(--white);
  }

  .hamburger {
    display: none;
    cursor: pointer;
  }

  /* Hero Section */
  .hero {
    padding: 160px 0 100px;
    background-color: var(--bg-light);
  }

  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }

  .hero-text {
    padding-right: 20px;
  }

  .badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary);
  }

  .hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
  }

  .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .cta-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
  }

  .cta-box h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
  }

  .cta-box ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
  }

  .cta-box li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
  }

  .cta-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-alt);
    font-weight: bold;
  }

  .phone-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
    display: block;
  }

  /* Services Section */
  .section {
    padding: 100px 0;
  }

  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
  }

  .service-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }

  .service-icon {
    font-size: 2rem;
    color: var(--accent-alt);
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
  }

  .service-card p {
    margin-bottom: 15px;
    color: var(--text-light);
  }

  .service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
  }

  .service-features li {
    background-color: var(--bg-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text);
  }

  /* FAQ Section */
  .faq {
    background-color: var(--bg-light);
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
  }

  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-answer.open {
    padding: 0 20px 20px;
    max-height: 300px;
  }

  .faq-toggle {
    color: var(--accent-alt);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .faq-toggle.open {
    transform: rotate(45deg);
  }

  /* Additional Services */
  .additional-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .service-list {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .service-list h3 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
  }

  .service-list-item {
    margin-bottom: 25px;
  }

  .service-list-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  /* Service Areas */
  .areas {
    background-color: var(--primary);
    color: var(--white);
  }

  .areas h2 {
    color: var(--white);
  }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
  }

  .area-item {
    padding: 10px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: background-color 0.3s ease;
  }

  .area-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }


  /* Contact Section */
  .contact {
    text-align: center;
  }

  .contact h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .contact-info {
    margin: 40px 0;
  }

  .contact-phone {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
  }

  .contact-address {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
  }

  /* Footer */
  .footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
  }

  .footer-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .footer-address {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .footer-phone {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent);
  }

  .copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
    .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }

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

    .additional-services {
      grid-template-columns: 1fr;
    }

    .areas-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .highlights {
      grid-template-columns: repeat(2, 1fr);
    }

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

    .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: var(--white);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
      padding: 20px 0;
    }

    .nav-menu.active {
      left: 0;
    }

    .nav-item {
      margin: 15px 0;
    }

    .hamburger {
      display: block;
    }

    .call-btn {
      margin-left: 0;
      margin-top: 10px;
    }
  }

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }

    .section-title h2 {
      font-size: 2rem;
    }

    .areas-grid {
      grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero-buttons {
      flex-direction: column;
    }

    .btn {
      width: 100%;
      text-align: center;
      margin-bottom: 10px;
    }

    .contact-phone {
      font-size: 2rem;
    }
  }
