/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: #f5fdf7;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #123;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

:root {
  --orange: #dc7927;
  --green: #00bb31;
  --petrol: #197278;
  --gray: #999;
}

.container {
  max-width: 800px;
  background: white;
  padding: 50px 60px 45px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.logo {
  max-height: 50px;
  width: auto;
  height: auto;
}

.logo.faded {
  opacity: 0.4;
  filter: grayscale(100%) brightness(90%);
}

.arrow {
  font-size: 48px;
  font-weight: bold;
  color: var(--petrol);
}

h1 {
  font-size: 2rem;
  margin-bottom: 25px;
  line-height: 1.3;
  color: black;
}

.info {
  font-size: 1.2rem;
  margin: 20px 0 25px;
  line-height: 1.5;
  color: #333;
}

.redirect-btn {
  display: inline-block;
  margin: 10px 0;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: var(--petrol);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.redirect-btn:hover {
  background-color: var(--green);
  text-decoration: underline;
  color: white;
}

.fallback {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

.signature {
  margin-top: 20px;
  font-size: 1rem;
  color: black;
  font-style: italic;
}

@media (max-width: 600px) {
  .container {
    padding: 40px 20px 35px;
  }

  .logo {
    max-height: 40px;
  }

  .arrow {
    font-size: 36px;
  }
}
