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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #444653;
  background: #f8f9ff;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-width: 1280px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 89px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 89px;
  padding: 0 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.header__logo {
  font-size: 24px;
  font-weight: 700;
  color: #002576;
  line-height: 32px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-size: 16px;
  line-height: 24px;
  color: #444653;
  transition: color 0.2s;
}

.header__nav-link:hover {
  color: #002576;
}

.header__nav-link--active {
  font-weight: 600;
  color: #012e8f;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #ffd31a;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  color: #705b00;
  line-height: 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.header__btn:hover {
  opacity: 0.9;
}

/* Hero Banner */
.hero {
  width: 100%;
  height: 228px;
  overflow: hidden;
}

.hero__bg {
  width: 100%;
  height: 228px;
  object-fit: cover;
}

/* Contact Section */
.contact {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 64px 80px;
}

.contact__title {
  font-size: 48px;
  font-weight: 700;
  color: #012e8f;
  text-align: center;
  letter-spacing: -0.96px;
  line-height: 56px;
  margin-bottom: 24px;
}

.contact__desc {
  font-size: 18px;
  color: #43474f;
  text-align: center;
  line-height: 28px;
  max-width: 693px;
  margin: 0 auto 80px;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
}

.contact__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 33px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.contact__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #dbe1ff;
  border-radius: 12px;
  margin-bottom: 32px;
}

.contact__icon {
  object-fit: contain;
}

.contact__icon--corporate {
  width: 20px;
  height: 18px;
}

.contact__icon--methods {
  width: 17px;
  height: 20px;
}

.contact__icon--hours {
  width: 20px;
  height: 20px;
}

.contact__card-title {
  font-family: 'Hanken Grotesk', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0b1c30;
  letter-spacing: 0.48px;
  line-height: 32px;
  margin-bottom: 16px;
}

.contact__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__label {
  font-family: 'Hanken Grotesk', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #00328a;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 24px;
}

.contact__value {
  font-family: 'Hanken Grotesk', 'Inter', sans-serif;
  font-size: 16px;
  color: #434653;
  line-height: 24px;
}

.contact__value--bold {
  font-weight: 600;
  color: #0b1c30;
}

.contact__email-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 17px;
  background: #eff4ff;
  border: 1px solid rgba(195, 198, 214, 0.2);
  border-radius: 16px;
}

.contact__email {
  font-family: 'Hanken Grotesk', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #00328a;
  line-height: 24px;
  transition: color 0.2s;
}

.contact__email:hover {
  color: #002576;
}

.contact__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact__row--muted {
  opacity: 0.5;
  padding-bottom: 24px;
}

.contact__row-label {
  font-family: 'Hanken Grotesk', 'Inter', sans-serif;
  font-size: 16px;
  color: #434653;
  line-height: 24px;
}

.contact__row-value {
  font-family: 'Hanken Grotesk', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0b1c30;
  line-height: 24px;
  text-align: right;
}

.contact__location-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px;
  background: #f8f9ff;
  border: 1px solid rgba(195, 198, 214, 0.3);
  border-radius: 16px;
}

.contact__location-icon {
  width: 20px;
  height: 24px;
  flex-shrink: 0;
}

.contact__location-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__location-value {
  font-family: 'Hanken Grotesk', 'Inter', sans-serif;
  font-size: 16px;
  color: #0b1c30;
  line-height: 24px;
}

/* Footer */
.footer {
  background: #213145;
  padding: 42px 80px 33px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
}

.footer__brand {
  max-width: 640px;
}

.footer__logo {
  font-size: 24px;
  font-weight: 700;
  color: #dce1ff;
  line-height: 32px;
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 16px;
  color: rgba(211, 228, 254, 0.8);
  line-height: 24px;
  margin-bottom: 24px;
}

.footer__info {
  font-size: 16px;
  color: rgba(211, 228, 254, 0.8);
  line-height: 24px;
}

.footer__info p + p {
  margin-top: 8px;
}

.footer__links-title {
  font-size: 16px;
  color: rgba(211, 228, 254, 0.8);
  line-height: 34px;
  margin-bottom: 4px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  line-height: 34px;
}

.footer__links a {
  font-size: 16px;
  color: rgba(211, 228, 254, 0.8);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 33px;
}

.footer__copyright {
  font-size: 14px;
  color: rgba(211, 228, 254, 0.6);
  line-height: 20px;
}
