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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.header {
  margin-bottom: 40px;
}

.logo {
  height: 60px;
  width: auto;
  max-width: 300px;
}

.main-content {
  padding: 0 20px;
}

.title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d50ae;
  margin-bottom: 40px;
  line-height: 1.4;
}

.message {
  margin-bottom: 50px;
}

.message p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #555;
  line-height: 1.8;
}

.alternatives {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.service-option {
  max-width: 500px;
  width: 100%;
}

.service-label {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.service-link {
  display: inline-block;
  font-size: 1rem;
  color: #2d50ae;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

.service-link:hover {
  color: #1a3a8a;
  border-bottom-color: #1a3a8a;
}

.service-link:focus {
  outline: 2px solid #2d50ae;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 30px 15px;
  }

  .title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .logo {
    height: 50px;
  }

  .message p {
    font-size: 1rem;
  }

  .main-content {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 98%;
    padding: 25px 10px;
    margin: 10px;
  }

  .title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .logo {
    height: 40px;
  }

  .header {
    margin-bottom: 30px;
  }

  .alternatives {
    gap: 25px;
  }

  .message {
    margin-bottom: 40px;
  }
}
