body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: url("data/Rosace.jpg") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

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

.logo {
  max-width: 380px;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.slogan {
  font-size: 1.1rem;
  color: #2c2c2c;
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-button {
  padding: 14px 36px;
  font-size: 1rem;
  background: linear-gradient(to right, #a0ddf9, #69c2f2);
  border-radius: 28px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
