:root {
  --yellow: #fbf315;
  --blue: #00315e;
  --blue-dark: #00284d;
  --white: #ffffff;
  --text: #173247;
  --border: rgba(0, 49, 94, 0.18);
  --shadow: 0 18px 42px rgba(0, 49, 94, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--yellow);
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.site-header,
.content,
.site-footer {
  width: min(1040px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  justify-content: center;
  padding: 48px 0 18px;
}

.logo {
  display: block;
  width: min(600px, 84vw);
  height: auto;
}

.content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px 0 64px;
  text-align: center;
}

.country-label {
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.34em;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(52px, 8vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.intro {
  max-width: 820px;
  margin: 32px auto 0;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.45;
}

.service-text {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.65;
}

.contact-card {
  display: grid;
  width: min(820px, 100%);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 56px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: left;
}

.contact-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 26px;
}

address {
  color: var(--text);
  font-size: 17px;
  font-style: normal;
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  min-width: 260px;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(0, 49, 94, 0.22);
}

.button-secondary {
  background: transparent;
  color: var(--blue);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(0, 49, 94, 0.06);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(0, 49, 94, 0.2);
  color: var(--blue);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 34px;
  }

  .content {
    padding-top: 24px;
  }

  .country-label {
    font-size: 14px;
    letter-spacing: 0.24em;
  }

  .intro {
    font-size: 22px;
  }

  .service-text {
    font-size: 17px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .contact-actions {
    min-width: 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .site-header,
  .content,
  .site-footer {
    width: min(100% - 28px, 1040px);
  }

  .logo {
    width: min(92vw, 520px);
  }

  h1 {
    font-size: 48px;
  }

  .intro {
    font-size: 20px;
  }

  .contact-card {
    margin-top: 42px;
    padding: 24px 20px;
  }

  .button {
    width: 100%;
  }
}
