body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
  line-height: 1.5;
}

/* Header */
.top {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.logo {
  height: 80px;
}

/* Banner */
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Offer */
.offer {
  background: red;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 24px;
  font-weight: bold;
}

/* Packages */
.packages {
  padding: 20px;
}

.packages h2 {
  text-align: center;
  margin-bottom: 12px;
}

/* Table improvement */
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

table th, table td {
  border: 1px solid #eee;
  padding: 12px 10px;
  text-align: center;
}

table th {
  background: #222;
  color: white;
  font-weight: bold;
}

table tr:nth-child(even) td {
  background: #fafafa;
}

table tr:hover td {
  background: #f1f1f1;
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 18px 15px;
}

.footer-link {
  color: #ffffff;
  text-decoration: underline;
}

.footer-link:hover {
  opacity: 0.85;
}

/* Contact Page */
.contact {
  padding: 20px;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  opacity: .9;
}

/* ✅ Floating Icon Buttons (WhatsApp + Contact) */
.float-buttons {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
  z-index: 9999;
}

.float-btn img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.float-btn img:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}

/* ✅ Mobile improvements */
@media (max-width: 600px) {
  .offer {
    font-size: 18px;
    padding: 12px;
  }

  .logo {
    height: 65px;
  }

  table th, table td {
    padding: 10px 6px;
    font-size: 14px;
  }

  .float-btn img {
    width: 52px;
    height: 52px;
  }
}
.banner {
  position: relative;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #ffffff;
  max-width: 520px;
}

.banner-text h2 {
  font-size: 38px;
  margin: 0 0 10px;
  text-shadow: 0 4px 10px rgba(0,0,0,.6);
}

.banner-text p {
  font-size: 20px;
  margin: 0;
  text-shadow: 0 3px 8px rgba(0,0,0,.6);
}

/* Mobile banner text */
@media (max-width: 768px) {
  .banner-text {
    left: 5%;
    right: 5%;
    text-align: center;
  }

  .banner-text h2 {
    font-size: 26px;
  }

  .banner-text p {
    font-size: 16px;
  }
}
