/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  color: #1a1a1a;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* Logo */
.logo-wrapper {
  flex-shrink: 0;
}

.logo {
  width: 220px;
  height: auto;
  display: block;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

address {
  font-style: normal;
  margin-bottom: 1rem;
}

.address-line {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
}

.phone {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.download-link {
  font-size: 1.05rem;
  font-weight: 400;
  color: #555555;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.download-link:hover {
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 640px) {
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }

  .logo {
    width: 264px;
  }

  .contact-info {
    align-items: center;
    width: 264px;
  }

  address {
    text-align: center;
  }
}
