:root {
      --accent: white;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f9f9f9;
    }

    .navbar {
      background-color: rgba(51, 51, 51, 0.7);
      backdrop-filter: blur(5px);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      flex-wrap: nowrap;
      animation: fadeSlideDown 0.8s ease-out forwards;
    }

        p {
      font-size: 1.1rem;
      line-height: 1.6;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    @keyframes fadeSlideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
        transform: translateY(0);
      }
    }

    .navbar-logo img {
      height: 36px;
    }

    .hamburger {
      display: none;
      font-size: 28px;
      color: var(--accent);
      cursor: pointer;
      padding: 10px;
      margin-left: auto;
    }

    .navbar-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-grow: 1;
    }

    .navbar-links {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .navbar-links a {
      color: var(--accent);
      text-decoration: none;
      font-size: 1rem;
      padding: 10px;
      position: relative;
      transition: all 0.3s ease;
    }

    .navbar-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 6px;
      width: 100%;
      height: 2px;
      background-color: var(--accent);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.3s ease;
    }

    .navbar-links a:hover::after,
    .navbar-links a.active::after {
      transform: scaleX(1);
    }

    .hero-banner {
      width: 100%;
      height: 50vh;
      overflow: hidden;
      margin-top: 60px;
    }

    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    main {
      padding: 60px 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    h1 {
      font-size: 2.2rem;
      margin-bottom: 20px;
      text-align: center;
    }

    p.intro {
      font-size: 1.1rem;
      line-height: 1.6;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .services-list {
      background: white;
      padding: 30px;
      margin: 40px 0;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .services-list h2 {
      margin-top: 0;
      font-size: 1.6rem;
      color: #222;
    }

    .services-list ul {
      padding-left: 20px;
      margin: 20px 0 0;
    }

    .services-list li {
      margin-bottom: 15px;
      line-height: 1.6;
      font-size: 1rem;
      color: #333;
    }

    .services-list li strong {
      font-weight: 600;
      color: #000;
    }

    @keyframes fadeSlide {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .entrance .hero-banner {
      animation: fadeSlide 1s ease forwards;
      animation-delay: 0.3s;
      opacity: 0;
    }

    .entrance main {
      animation: fadeSlide 1s ease forwards;
      animation-delay: 0.8s;
      opacity: 0;
    }

    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .navbar {
        flex-direction: row;
        align-items: center;
      }

      .navbar-right {
        justify-content: flex-end;
        width: 100%;
      }

      .navbar-links {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        align-items: flex-end;
        background-color: rgba(51, 51, 51, 0.95);
        width: 200px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        transition: max-height 0.4s ease, opacity 0.3s ease;
        z-index: 999;
      }

      .navbar-links.show {
        max-height: 500px;
        opacity: 1;
      }

      .navbar-links a {
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
        text-align: right;
      }

      h1 {
        font-size: 1.8rem;
      }

      p.intro {
        font-size: 1rem;
        padding: 0 10px;
      }

      .services-list {
        padding: 25px;
      }

      .services-list li {
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      .hero-banner {
        height: 35vh;
      }

      .services-list {
        padding: 20px;
      }

      .services-list h2 {
        font-size: 1.3rem;
      }

      .services-list li {
        font-size: 0.9rem;
      }
    }

    .footer {
  background-color: orange;
  border: 8px solid #2f2f38;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  flex-wrap: wrap;
}

.footer-left, .footer-center, .footer-right {
  flex: 1 1 auto;
  min-width: 220px;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.contact-us {
  font-size: 2.2rem;
  text-align: left;
  font-weight: bold;
  margin: 0 auto;
  padding: 0;
}

.contact-us-link {
  color: rgb(0, 0, 0);
  font-size: 2.4rem;
}

.contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-card {
  flex: 0 0 auto;
  text-align: left;
  min-width: 180px;
  font-size: 1.5rem;
}

.phone-number {
  font-size: 1.65rem;
  text-align: left;
}

.phone-number-name {
  font-size: 1.8rem;
  text-align: left;
  font-weight: 700;
}

.email {
  text-align: left;
  font-size: 1.5rem;
  color: #111;
  font-weight: bold;
}

.email-address {
  color: #111;
  text-decoration: none;
  text-align: left;
}

.address-title {
  text-align: left;
  font-size: 1.9rem;
}

.address {
  text-align: left;
  font-size: 1.2rem;
}

.footer-column-right .address,
.footer-column-right .social-icons {
  text-align: right;
}

.social-icons {
  width: 100%;
  text-align: left;
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
}

.social-icons img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.disclaimer {
  text-align: left;
  font-size: 1.7rem;
  color: #111;
  font-weight: bold;
  text-decoration: underline;
  margin-top: 17.5%;
}

.responsive-disclaimer {
  display: none;
}

@media (max-width: 768px) {
  .responsive-disclaimer {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 10px 0 20px;
  }

  .contact-card .disclaimer {
    display: none;
  }
}

.certificate-container {
  text-align: right;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .certificate-container {
    text-align: left;
  }
}

.certificate {
  width: 120px;
  height: auto;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 1000px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 36px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  background-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  z-index: 1001;
}

.mobile-pdf-buttons {
  display: none;
  text-align: center;
  padding: 20px 10px;
}

.mobile-pdf-btn {
  display: block;
  background-color: #333;
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  margin: 10px auto;
  border-radius: 8px;
  font-size: 1.2rem;
  width: 90%;
  max-width: 300px;
  transition: background 0.3s ease;
}

.mobile-pdf-btn:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .desktop-pdf-view {
    display: none;
  }

  .mobile-pdf-buttons {
    display: block;
  }
}