/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #37B6FF;
  --text-color: #ffffff;
  --heading-color: #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #002c4c;
}

/* Container styles */
.container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

/* Logo styles */
.logo {
  max-width: 380px;
  height: auto;
  margin-bottom: 60px;
}

/* Typography */
h1 {
  font-size: 3.5rem;
  color: var(--heading-color);
  margin-bottom: 24px;
  font-weight: 500;
}

p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: var(--text-color);
  line-height: 1.5;
}

/* Button styles */
.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 100px;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #2AA3FF;
  transform: translateY(-2px);
}

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

  p {
    font-size: 1.125rem;
  }

  .logo {
    max-width: 300px;
    margin-bottom: 40px;
  }
}

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

  p {
    font-size: 1rem;
  }

  .logo {
    max-width: 240px;
    margin-bottom: 32px;
  }

  .cta-button {
    padding: 14px 36px;
    font-size: 1rem;
  }
}
