.tareng-container {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

.tareng-header {
  background-color: rgb(252, 194, 4);
  color: rgb(143, 142, 142);
  text-align: center;
  padding: 2rem 1rem;
}

.tareng-title {
  font-size: 2.5rem;
  margin: 0;
}

.tareng-subtitle {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}


.tareng-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.tareng-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.tareng-nav a:hover {
  text-decoration: underline;
}


.tareng-hero {
  background-color: #ffe6cc;
  padding: 2rem;
  text-align: center;
}

.tareng-cta {
  text-align: center;
  margin: 2rem 0;
}

.tareng-cta button {
  background-color: rgb(250, 185, 5);
  border: none;
  color: rgb(91, 90, 90);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.tareng-cta button:hover {
  background-color: #e69500;
}


.tareng-services {
  padding: 2rem 1rem;
  text-align: center;
}

.tareng-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.tareng-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tareng-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


.tareng-about,
.tareng-contact {
  padding: 2rem 1rem;
  text-align: center;
}


.tareng-footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}

.tareng-socials {
  margin-top: 0.5rem;
}

.tareng-socials a {
  color: white;
  margin: 0 0.5rem;
  text-decoration: none;
}

.tareng-socials a:hover {
  text-decoration: underline;
} 

/* WhatsApp Button in Contact Section */
.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.whatsapp-button:hover {
  background-color: #1ebe5b;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 100;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: none; /* hidden by default */
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
}