:root {
  --primary: #003a8f;
  --secondary: #e6eef8;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
}

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

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, var(--secondary), #f9fafb);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: var(--white);
  max-width: 720px;
  width: 100%;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.logo {
  margin-bottom: 2rem;
}

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

h1 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.action-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.action-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.action-card span {
  font-size: 0.95rem;
  color: var(--text-light);
}

footer {
  font-size: 0.85rem;
  color: #9ca3af;
}

@media (max-width: 480px) {
  .container {
    padding: 2.25rem 1.5rem;
  }

  h1 {
    font-size: 1.6rem;
  }
}
