/* General Styles */

body, html {
  height: 100%; /* Ensure the body and html take up the full height */
  margin: 0; /* Remove default margin */
}


body {
  font-family: Arial, sans-serif;
  padding: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  color: #333;
}

h1 {
  max-width: 850px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
  color: #0074B7;
  margin-top:  4rem;
  margin-bottom: 4rem;
}

h2{

  max-width: 800px;
  font-size: 1.3rem;
  line-height: 1.2;
  text-align: center;
  color: #444744;
  margin-bottom: 20px;

}

h3{

  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  max-width: 550px;
  font-family:Arial, Helvetica, sans-serif;
  padding-left: 20px;
  padding-right: 20px;

}



.explainlink {


  padding: 15px 0; /* Add padding above and below */
  padding-left: 15px;
  padding-right: 15px;
  border-top: 2px solid #e0e0e0; /* Thin light gray border on top */
  border-bottom: 2px solid #e0e0e0; /* Thin light gray border on bottom */
  margin: 20px 0; /* Add some space around the paragraph */
  background-color: #fcf7f7;

  

}

p {
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 60ch; /* Adjust based on desired line length */
  text-align: center;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Style for the footer */
.footer {
  width: 100%; /* Make the footer stretch the full width */
  bottom: 20px; /* Distance from the bottom */
  text-align: center;
  color: rgb(67, 70, 68); /* Text color */
  padding: 10px 20px; /* Padding inside the button */
  border-radius: 5px; /* Rounded corners */
  text-decoration: none; /* Remove underline from link */
  font-family: Arial, sans-serif; /* Use a clean font */
  font-size: 1rem;
  cursor: pointer; /* Show pointer cursor on hover */
}

.message {
  
  margin: 50px;
  border: 2px dotted #0074B7;
  padding: 10px;
  background-color: #E6F1FA;
  border-radius: 10px;
}

.message.error {
  margin: 50px;
  border: 2px dotted #0074B7;
  padding: 10px;
  background-color: #F8F9FA;
  border-radius: 10px;
}

.link {

  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
  max-width: 550px;
  font-family:Georgia, 'Times New Roman', Times, serif;
  padding: 30px;
}



.footer-text-color {
  color: #5f6061;
}

.why {

  padding: 20px 20px 20px 20px;
  background-color: #E6F1FA;
}

.logo {
  margin: 0;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: flex-start; /* Align to the top */
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: #555555;
  width: 100%;
  height: auto;
}

a.logo-link {
  text-decoration: none;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
}

.whatsapp-button:hover {
  background-color: #1EBE5D;
}

/* Logo Image */
.logo img {
  width: auto; /* Use the image's intrinsic width */
  height: auto; /* Maintain aspect ratio */
  max-width: 100%; /* Ensure the image doesn't exceed the container width */
  display: block; /* Remove extra space below the image */
  margin: 0 auto; /* Center the image */
}

.short {

  font-size: 1.4rem;
  color: #444744;
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  h1 {
      font-size: 2rem;
  }

  h2 {
    font-size: 1.25rem;
}

  p {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
      font-size: 1.8rem;
  }

  h2 {
    font-size: 1.25rem;
}

  p {
      font-size: 0.9rem;
  }
}


@media (max-width: 386px) {
  .logo { 
    max-width: 290px; /* Optional: Set a maximum width */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center horizontally */
    display: block; /* Ensure block display for centering */
    text-align: center; /* Center inline content (if any) */
  }
}


