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

    body {
      font-family: "Segoe UI", Arial, sans-serif;
      background-color: #0a5252;
      color: #fff;
      line-height: 1.6;
      font-size: 18px;
      scroll-behavior: smooth;
    }

    /* NAVIGATION BAR */
    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(4px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 40px;
      border-bottom: 3px solid skyblue;
    }

    nav .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    nav .logo img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }

    nav .logo h2 {
      font-family: "Engravers MT", serif;
      color: skyblue;
      font-size: 24px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: yellow;
    }

    /* HEADER */
    header {
      background: linear-gradient(to right, #005f5f, #008080);
      text-align: center;
      padding: 60px 20px 40px;
    }

    header h1 {
      font-family: "Engravers MT", serif;
      color: skyblue;
      font-size: 42px;
      margin-bottom: 10px;
    }

    header h4 {
      color: #fff8c4;
      font-family: "Lucida Handwriting", cursive;
      font-size: 20px;
    }

    /* HERO SECTION */
    .hero {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(to right, #004f4f, #006f6f);
    }

    .hero h2 {
      color: #fff;
      font-family: "Arial Rounded MT Bold", sans-serif;
      font-size: 28px;
      margin-bottom: 20px;
    }

    .hero p {
      max-width: 800px;
      margin: 0 auto;
    }

    .hero strong {
      color: skyblue;
    }

    .image-gallery {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin: 40px auto;
      max-width: 1000px;
    }

    .image-gallery img {
      width: 300px;
      height: 215px;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .image-gallery img:hover {
      transform: scale(1.05);
    }

    .highlight {
      text-align: center;
      font-weight: bold;
      color: yellow;
      margin-top: 20px;
      font-size: 20px;
    }

    /* SERVICES SECTION */
    #services {
      padding: 60px 40px;
      background-color: #007272;
    }

    #services h1 {
      text-align: center;
      color: skyblue;
      margin-bottom: 40px;
      font-size: 32px;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .service-card {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 25px;
      border-radius: 12px;
      text-align: center;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .service-card:hover {
      background-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-5px);
    }

    .service-card img {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
    }

    .service-card h3 {
      color: yellow;
      margin-bottom: 10px;
      font-size: 20px;
    }

    .service-card p {
      font-size: 16px;
      color: #f5f5f5;
    }

    /* ABOUT & FAQ SECTIONS */
    section {
      padding: 60px 40px;
    }

    section h1 {
      color: skyblue;
      margin-bottom: 20px;
      font-size: 32px;
      text-align: center;
    }

    section p {
      max-width: 900px;
      margin: 0 auto 30px auto;
      text-align: center;
    }

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

    details {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 15px 20px;
      border-radius: 10px;
      margin-bottom: 10px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    details:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    details summary {
      font-weight: bold;
      color: skyblue;
      font-size: 18px;
    }

    details p {
      margin-top: 10px;
      color: #fff;
    }

    /* FOOTER */
    footer {
      background-color: #007272;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: flex-start;
      padding: 40px 20px;
      color: #ddd;
    }

    footer iframe {
      border: none;
      border-radius: 10px;
    }

    footer p {
      max-width: 300px;
      line-height: 1.5;
    }

    footer a {
      display: inline-block;
      color: skyblue;
      text-decoration: none;
      margin: 5px 10px 0 0;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: yellow;
    }

    footer img {
      border-radius: 10px;
      width: 220px;
      height: auto;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .image-gallery img {
        width: 90%;
      }

      footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      footer iframe {
        width: 100%;
        max-width: 350px;
      }
    }