 :root {
      --primary: #003c8f;
      --accent: #ff8300;
      --light-blue: #e9f1fd;
      --gray: #f8f9fa;
    }

body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: white;
      color: #333;
    }
    .container {
    max-width: 1000px;
    margin: 0 0 0 45%;
    padding: 0 1rem;
    }

    header {
      background: url('/img/bg2.jpg') no-repeat center center/cover;
      color: white;
      text-align: left;
      padding: 4rem 1.5rem;
      position: relative;
    }

    header::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 600px;
    }

    .hero-logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .hero-logo img {
      height: 60px;
    }

    .hero-logo span {
      font-size: 3rem;
      font-weight: 700;
      color: #ff8300;
    }

    header h1 {
      font-size: 2.2rem;
      margin: 0 0 1rem;
    }

    header p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cta-buttons a {
      text-decoration: none;
      padding: 0.8rem 1.5rem;
      border-radius: 26px;
      font-weight: 600;
      color: white;
      background: var(--accent);
    }

    .cta-buttons a.whatsapp {
      background: #25D366;
    }

    .section {
      max-width: 1000px;
      margin: 3rem auto;
      padding: 0 1rem;
    }

    .section h2 {
      color: var(--primary);
      font-size: 2rem;
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1rem;
      padding-left: 1rem;
    }

    .services li {
      list-style: none;
      margin-bottom: 0.5rem;
      position: relative;
      padding-left: 1.5rem;
    }

    .services li::before {
      content: '✔';
      position: absolute;
      left: 0;
      color: var(--accent);
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem;
    }

    .gallery a img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.2s ease;
    }

    .gallery a:hover img {
      transform: scale(1.03);
    }

    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .testimonial-card {
      background: var(--gray);
      border-left: 5px solid var(--accent);
      padding: 1.2rem;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    .testimonial-card p {
      margin: 0;
      font-style: italic;
      color: #444;
    }

    .testimonial-card span {
      display: block;
      margin-top: 0.5rem;
      font-weight: 600;
      color: var(--primary);
    }

.footer {
  background: #202e3d;
  color: #fff;
  padding: 2.5rem 1rem;
  text-align: center;
}

.footer h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-btn {
  background: #ff8300;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.whatsapp {
    background: #25D366;
}
.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #ccc;
  flex-wrap: wrap;
}  


    @media (max-width: 600px) {
      header h1 {
        font-size: 1.6rem;
      }
      .container {    
        margin: 0 auto;
        }
    }