* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #333;
  background-color: #F0F0F0;
  background-image: linear-gradient(45deg, #2ecc71, #242c35, #0d8fc9, #242c35);
  background-size: 600% 100%;
  animation: gradient 20s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  max-width: 80%;
  margin: 0 auto;
}

header {
  text-align: center;
  padding: 3rem 0;
}

header img {
  max-width: 200px;
}

h1 {
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

h2 {
  margin: 1rem 0 0;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

h4 {
  margin: 1rem 0 0;
  font-size: 2rem;
  font-weight: 500;
  color: #2ecc71;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

h5 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFF;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

#countdown {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

#countdown > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.countdown-value {
  font-size: 4rem;
  font-weight: 700;
  color: #0d8fc9;
}

.countdown-label {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}

#company {
  background-color: #fff;
  text-align: center;
  padding: 3rem 0;
}

.company-name {
  margin: 1rem 0 0;
  font-size: 5rem;
  font-weight: 700;
  color: #0d8fc9;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.company-description {
  margin: 1rem 0 0;
  font-size: 2rem;
  font-weight: 500;
  color: #333;
  text-shadow: 2px 2px 0 rgba(255,255,255,0.1);
}

#about {
  text-align: center;
  padding: 3rem 0;
}

#about h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #0d8fc9;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

#about p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 2px 2px 0 rgba(255,255,255,0.1);
  color: #f5f5f5;  /* Light gray color for better contrast */
  line-height: 1.5;  /* Improved line spacing for readability */
  max-width: 90%;  /* Limiting width on larger screens */
  margin: 0 auto;  /* Centering the text block */
}

#contact {
  background-color: #fff;
  text-align: center;
  padding: 3rem 0;
}

#contact h3 {
  margin: 0 0 2rem;
  font-size: 3rem;
  font-weight: 700;
  color: #0d8fc9;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

#contact p {
  margin: 0 auto;
  max-width: 600px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  text-shadow: 2px 2px 0 rgba(255,255,255,0.1);
}

footer {
  text-align: center;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 3rem;
}

footer p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
}

footer a {
  color: #0d8fc9;
  text-decoration: none;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 9999; /* Ensure it's above other elements */
}

.whatsapp-float i {
  font-size: 24px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 3rem;
	font-weight: 500;
  }

  h2 {
    font-size: 2rem;
	font-weight: 400;
  }
  
  h4 {
	font-size: 2.4rem;
	font-weight: 400;
  }
	
  #countdown {
    flex-wrap: wrap;
  }

  #countdown > div {
    margin: 1rem 0.5rem;
  }

  .countdown-value {
    font-size: 3rem;
  }

  .countdown-label {
    font-size: 1rem;
  }

  .company-name {
    font-size: 4rem;
  }

  .company-description {
    font-size: 1.5rem;
  }

  #about h3,
  #contact h3 {
    font-size: 2rem;
  }
	
  #about p {
	font-size: 1.2rem;
	max-width: 100%;  /* Limiting width on larger screens */
	margin: 0 auto;  /* Centering the text block */
  }

  #contact p {
    font-size: 1.2rem;
  }

  footer p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
    .container, body, h1, h2, h3, p {
        width: 100%;
        box-sizing: border-box;
    }
	.company-name {
	  font-size: 3rem;
	  font-weight: 500;
	}
}
