* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* This ensures padding doesn't affect overall width */
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(lightblue, white);
  margin: 0;
  padding: 0;
  min-height: 100vh; /* Ensure body is at least the height of the viewport */
  display: flex;
  flex-direction: column; /* Stack children vertically */
  justify-content: center;
}

.container {
  flex: 1; /* Allow container to grow and fill available space */
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  margin: auto; /* Center the container */
}

.logo img {
  max-width: 700px;
  height: auto;
}
.right-content {
  text-align: left;
  max-width: 400px;
}

.right-content h2 {
  color: #555;
  font-size: 0.9em;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.right-content h1 {
  color: #1a3443;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.right-content p {
  color: #333;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-button {
  background-color: rgb(112, 169, 207);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #0056b3;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: transparent;

  width: 100%;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    max-width: 500px;
  }

  .right-content {
    text-align: center;
    max-width: 100%;
  }

  .cta-button {
    padding: 10px 20px;
    margin-bottom: 40px;
  }
}
