:root {
  --bg: #fafafa;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --accent: #c95a2e;
  --border: #e6e6e6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

h1, h2, h3 {
  line-height: 1.3;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
}

p {
  max-width: 700px;
}

/* HERO */
.hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .hero img {
    max-height: 60vh;
    object-fit: cover;
  }
}


.hero-text {
  margin-top: 2rem;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* BRIDGE */
.bridge {
  margin: 3rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--border);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* CTA */
.cta {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.cta a {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.8rem 1.4rem;
  text-decoration: none;
  font-weight: 500;
}

/* FOOTER */
footer {
  margin-top: 4rem;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 760px;
}

.country-section {
  margin: 4rem auto;
  text-align: center;
}

.country-section h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  color: #222;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.country-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;

  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 14px;

  padding: 1.2rem 1rem;

  text-decoration: none;
  color: #222;

  font-size: 1rem;
  font-weight: 500;

  transition: all 0.25s ease;
}

.country-card:hover {
  border-color: #cfcfcf;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.flag {
  font-size: 1.4rem;
  line-height: 1;
}

.country-name {
  white-space: nowrap;
}

.country-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;

  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;

  padding: 1.1rem 1.4rem;
  text-decoration: none;

  color: #1f1f1f;
  transition: all 0.25s ease;
}

.country-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transform: translateY(-2px);
  border-color: #d5d5d5;
}

.country-code {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #777;
}

.country-name {
  font-size: 1rem;
  font-weight: 500;
}
