:root {
      --primary: #007cf0;
      --secondary: #00dfd8;
      --text-dark: #222;
      --white: #ffffff;
      --green: #25d366;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #cce5ff, #fff5cc);
      color: var(--text-dark);
    }

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

    
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px 10px;
  gap: 24px;
  border-bottom: 4px solid var(--secondary);
  flex-wrap: nowrap;
  animation: fadeIn 1s ease-in;
}

    .logo {
      width: 100px;
      height: auto;
    }

    .brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;}

    .brand-title {
      font-size: 2.8rem;
      font-weight: 800;
      margin: 0;
      color: #003f5c;
      line-height: 1.1;
      letter-spacing: -0.5px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    }

    .tagline {
  font-size: 2.2rem;
  font-weight: 600;
  color: #00bfa6;
  margin-top: 6px;
  letter-spacing: 1px;
}

    .subtitle {
      font-size: 1.8rem;
      font-weight: 300;
      color: #333;
      margin: 30px auto 10px;
      text-align: center;
      position: relative;
    }

    .subtitle::after {
      content: '';
      display: block;
      width: 100px;
      height: 3px;
      background: var(--primary);
      margin: 10px auto 0;
      border-radius: 4px;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin: 40px 0;
    }

    .card {
      flex: 1 1 300px;
      background-color: var(--white);
      border: 2px dashed #b2dffc;
      border-radius: 16px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: scale(1.03);
    }

    .card h3 {
      margin-bottom: 10px;
      font-weight: 600;
      color: var(--primary);
    }

    .section-title {
      text-align: center;
      font-size: 1.9rem;
      color: var(--primary);
      margin: 60px 0 20px;
    }

    .package-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .package-card {
      background-color: var(--white);
      border: 2px solid var(--primary);
      border-radius: 16px;
      padding: 25px;
      width: 280px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .package-card:hover {
      transform: scale(1.05);
    }

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

    .package-card p {
      font-size: 1.1rem;
      color: #444;
      margin-bottom: 20px;
    }

    .package-btn {
      background-color: var(--green);
      color: white;
      padding: 12px 20px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s;
    }

    .package-btn:hover {
      background-color: #1da851;
    }

    .cta-button {
      background-color: var(--green);
      color: white;
      border: none;
      padding: 15px 30px;
      font-size: 1.1rem;
      border-radius: 12px;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: block;
      margin: 40px auto;
      text-align: center;
      width: fit-content;
    }

    .cta-button:hover {
      background-color: #1ebd5c;
    }

    .map-container {
      border: 3px solid var(--primary);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      margin: 0 auto 40px;
      max-width: 1000px;
    }

    iframe {
      width: 100%;
      height: 400px;
      border: 0;
      display: block;
    }

    footer {
      margin-top: 40px;
      padding: 20px;
      font-size: 0.9rem;
      text-align: center;
      color: #666;
      border-top: 3px solid var(--secondary);
    }

    @media screen and (max-width: 768px) {
      .brand-title {
        font-size: 1.9rem;
      }

      .features {
        flex-direction: column;
        gap: 15px;
      }

      .package-card {
        width: 100%;
      }

      .cta-button {
        width: 100%;
      }

      iframe {
        height: 300px;
      }

      
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px 10px;
  gap: 24px;
  border-bottom: 4px solid var(--secondary);
  flex-wrap: nowrap;
  animation: fadeIn 1s ease-in;
}

      .brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;}

      .tagline {
  font-size: 2.2rem;
  font-weight: 600;
  color: #00bfa6;
  margin-top: 6px;
  letter-spacing: 1px;
}
    }
  

    
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px 10px;
  gap: 24px;
  border-bottom: 4px solid var(--secondary);
  flex-wrap: nowrap;
  animation: fadeIn 1s ease-in;
}

    .logo {
      width: 100px;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      background-color: #fff;
    }

    .brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;}

    .brand-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #003f5c;
      margin: 0;
      letter-spacing: -0.5px;
    }

    .tagline {
  font-size: 2.2rem;
  font-weight: 600;
  color: #00bfa6;
  margin-top: 6px;
  letter-spacing: 1px;
}

    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }

    @media screen and (max-width: 768px) {
      .brand-title {
        font-size: 1.9rem;
      }
      .tagline {
  font-size: 2.2rem;
  font-weight: 600;
  color: #00bfa6;
  margin-top: 6px;
  letter-spacing: 1px;
}
      
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px 10px;
  gap: 24px;
  border-bottom: 4px solid var(--secondary);
  flex-wrap: nowrap;
  animation: fadeIn 1s ease-in;
}
    }
    

    
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px 10px;
  gap: 24px;
  border-bottom: 4px solid var(--secondary);
  flex-wrap: nowrap;
  animation: fadeIn 1s ease-in;
}

    .logo {
      width: 100px;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
      background-color: transparent;
    }

    .brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;}

    .brand-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #003f5c;
      margin: 0;
      letter-spacing: -0.5px;
    }

    .tagline {
  font-size: 2.2rem;
  font-weight: 600;
  color: #00bfa6;
  margin-top: 6px;
  letter-spacing: 1px;
}

    @media screen and (max-width: 768px) {
      .brand-title {
        font-size: 1.9rem;
      }
      .tagline {
  font-size: 2.2rem;
  font-weight: 600;
  color: #00bfa6;
  margin-top: 6px;
  letter-spacing: 1px;
}
      
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px 10px;
  gap: 24px;
  border-bottom: 4px solid var(--secondary);
  flex-wrap: nowrap;
  animation: fadeIn 1s ease-in;
}
    }
@media screen and (max-width: 768px) {
  .logo {
    width: 80px;
  }
}

@media screen and (max-width: 768px) {
  .tagline {
  font-size: 2.2rem;
  font-weight: 600;
  color: #00bfa6;
  margin-top: 6px;
  letter-spacing: 1px;
}
}
