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

body {
  background: #ffffff;
  color: #1a2b33;
  font-family: Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 24px;
}

a { color: #1a2b33; text-decoration: none; }
a:hover { color: #00A0C6; }

.logo {
  width: 490px;
  height: auto;
  margin-bottom: 40px;
}

.tagline {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 400;
  color: #37474f;
  max-width: 560px;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 56px;
  border-top: 2px solid #00A0C6;
  border-bottom: 2px solid #00A0C6;
  padding: 20px 0;
}

.offices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  width: 100%;
}

.office {
  flex: 1 1 320px;
  background: hsl(200, 20%, 97%);
  border-radius: 12px;
  border: 1px solid hsl(200, 20%, 91%);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.office h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #00A0C6;
  line-height: 1.4;
  margin: 0 0 6px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #37474f;
}

.contact-line svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: #00A0C6;
}

@media (max-width: 720px) {
  .office {
    align-items: center;
    text-align: center;
  }

  .contact-line {
    justify-content: center;
  }

  .logo {
    width: 350px;
  }
}
