:root {
  --bg: #faf8f5;
  --text: #2c2825;
  --text-muted: #6b6560;
  --accent: #8b6914;
  --accent-light: #c9a227;
  --border: #e8e2db;
  --font-sans: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(44, 40, 37, 0.08);
  --shadow-hover: 0 12px 40px rgba(44, 40, 37, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.eu-gateway {
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.eu-gateway-inner {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
}

.eu-gateway-logo {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--text);
}

.eu-gateway-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.eu-gateway-intro {
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 1.5rem;
  font-weight: 500;
}

.eu-gateway-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.eu-gateway-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.eu-gateway-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.eu-gateway-card-flag {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.eu-gateway-card-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.eu-gateway-card-url {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.eu-gateway-card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.eu-gateway-footer {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 480px) {
  .eu-gateway-cards {
    grid-template-columns: 1fr;
  }

  .eu-gateway-inner {
    padding: 1.75rem 1.25rem;
  }

  .eu-gateway-logo {
    font-size: 1.85rem;
  }
}
