* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  line-height: 1.6;
}
header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  background-color: #1c3c59;
}

header .logo {
  font-size: 2rem;
  color: white;
  margin-left: 10px;
}

.logo-image {
  width: 50px; /* Adjust the size to make it smaller */
  height: auto;
  margin-right: 10px; /* Space between image and text */
}

/* Fullscreen intro section */
.intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: auto;
  padding: 50px;
  background-color: #ff7043;
  color: white;
}
.intro .tagline {
  flex: 1;
  font-family: "Poppins", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  padding-right: 50px;
  line-height: 1.2;
}
.intro .process {
  flex: 1;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 165, 0, 0.8)
  );
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: "Lora", sans-serif;
  margin-bottom: 30px;
  max-width: 400px;
}
.intro .process h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1c3c59;
  font-family: "Montserrat", sans-serif;
  padding-left: 10px; /* Add padding to align with list items */
}
.intro .process ol {
  padding-left: 10px; /* Same padding as the h2 to align */
}
.intro .process li {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
  padding: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  background-color: #1c3c59; /* Dark blue background */
  border-radius: 10px; /* Rounded corners */
}

.intro .process li:hover {
  background: rgba(28, 60, 89, 1); /* Slightly darker on hover */
  color: #ff7043; /* Optional: change text color on hover for emphasis */
}

/* Warning message */
.warning-message {
  background-color: #ffe0b2; /* Light orange background */
  color: #d84315; /* Darker orange text */
  text-align: center;
  padding: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  width: 100%; /* Ensure it takes full width */
  box-sizing: border-box;
}

/* Pricing section */
.pricing {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  background-color: white;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-tier {
  background-color: #f4f4f4;
  border-radius: 10px;
  padding: 30px;
  width: 30%; /* Keep the width at 30% for large screens */
  max-width: 400px; /* Optional: limit the max width of the pricing cards */
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-tier h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1c3c59;
}
.pricing-tier p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}
.pricing-tier .price {
  font-size: 2rem;
  color: #ff7043;
  margin-bottom: 20px;
}
.checkout-button {
  background-color: #1c3c59;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.checkout-button:hover {
  background-color: #ff7043;
  transform: scale(1.05);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.whatsapp-button img {
  width: 30px;
  height: 30px;
  loading: lazy;
}
.whatsapp-button:hover {
  background-color: #1ebe5b;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
  .intro {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .intro .tagline {
    font-size: 3rem;
  }
  .intro .process {
    width: 100%;
    margin-top: 20px;
  }

  .pricing-tier {
    width: 80%; /* Full width on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .warning-message {
    display: block; /* Restore the warning message */
    font-size: 1rem; /* Adjust font size for small screens */
    padding: 10px;
    margin-bottom: 20px;
  }

  .intro .tagline {
    font-size: 2.5rem;
  }
  .intro .process {
    font-size: 1rem;
    padding: 15px;
    margin-top: 10px;
    width: 100%;
  }
  .pricing-tier {
    width: 100%; /* Full width on smaller screens */
    margin-bottom: 20px;
  }

  .pricing {
    flex-direction: column; /* Stack pricing tiers vertically */
  }
}
.site-footer {
  background-color: #1c3c59;
  color: white;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: left;
}

.footer-section {
  flex: 1;
  padding: 20px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ff7043;
}

.footer-section p {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-section a {
  color: white;
  text-decoration: none;
  margin-right: 10px;
}

.footer-section a:hover {
  color: #ff7043;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  margin: 0 5px;
}

.footer-links a:hover {
  color: #ff7043;
}

.time-value-section {
  background-color: #ff7043; /* Facturina orange */
  color: white;
  text-align: center;
  padding: 50px;
  margin-top: 40px;
}

.time-value-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.time-value-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
}

.time-value-section .cta-button {
  background-color: #1c3c59; /* Facturina dark blue */
  color: white;
  padding: 15px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.time-value-section .cta-button:hover {
  background-color: #ff7043;
  color: white;
  transform: scale(1.05);
  transition: 0.3s ease;
}
