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

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #b2dfef, #cddfea);
  color: #222;
  text-align: center;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  padding: 2rem 3rem;
  max-width: unset;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

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

h1 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #d00000;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-style: italic;
  text-transform: uppercase;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 2rem 0;
}

.email {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #444;
}

.btn-wrapper {
  margin-top: 30px;
}

.btn {
  background-color: transparent;
  border: 2px solid #d00000;
  color: #d00000;
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #d00000;
  color: #fff;
}

.btn-wrapper {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background-color: transparent;
  border: 2px solid #d00000;
  color: #d00000;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  white-space: nowrap;
}

.btn:hover {
  background-color: #d00000;
  color: #fff;
}

.footer {
  margin-top: 2rem;
  font-size: 1rem;
  color: #444;
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1rem;
  }

  p {
    font-size: 0.95rem;
  }

  .logo {
    max-width: 80px;
  }
}

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

  h2 {
    font-size: 0.95rem;
  }

  p {
    font-size: 0.9rem;
  }

  .logo {
    max-width: 60px;
  }

  .footer {
    font-size: 0.9rem;
  }
}
