* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  background-color: #e5e7da;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.logo-container {
  text-align: center;
}

.logo-container img {
  max-width: 250px;
  height: auto;
}

.content-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.splash-card {
  background: white;
  border-radius: 10px;
  padding: 2rem 3rem;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon {
  width: 80px;
  margin-bottom: 1.6rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #113448;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background-color: #2d6a4f;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.cta-button:hover, .cta-button:focus {
  background-color: #07150f;
  color: #f1f1f1;
  outline: 2px solid #2d6a4f;
}

.cta-icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}
