body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to bottom right, #061f47, #0b66b1);
  color: #fff;
  line-height: 1.6;
}

header {
  background: #00000088;
  padding: 1rem;
  text-align: center;
}

header img {
  width: 80px;
  height: auto;
}

header h1 {
  margin: 0.5rem 0 0;
  font-size: 2.5rem;
}

.hero {
  padding: 3rem 1rem;
  text-align: center;
}

.hero img {
  max-width: 350px;
  width: 100%;
  margin-top: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.buttons a {
  display: inline-block;
  margin: 1rem;
  padding: 0.75rem 1.5rem;
  background: #ffcc00;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 1rem;
}

.feature {
  background: #ffffff11;
  padding: 2rem;
  border-radius: 1rem;
  width: 250px;
  text-align: center;
}

.feature img {
  width: 100%;
  max-width: 120px;
  margin-bottom: 1rem;
}

.download-logo {
  max-width: 150px !important;
  width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing {
  padding: 3rem 1rem;
  text-align: center;
  background: #00000088;
	
}

.pricing-tables {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.pricing-card {
  background: #ffffff11;
  border-radius: 1rem;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.pricing-card .duration {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: #ffcc00;
  margin-bottom: 1rem;
}

.pricing-card .price span {
  font-size: 1rem;
  color: #ccc;
}

.pricing-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #ffcc00;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
}

.pricing-card .pricing-logo {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

footer {
  text-align: center;
  padding: 2rem;
  background: #00000055;
  font-size: 0.9rem;
}

a {
  color: #ffcc00;
}

@media (max-width: 600px) {
  .buttons a {
    display: block;
    margin: 1rem auto;
    width: 80%;
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: background-color 0.3s;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  fill: white;
}
