/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Mark GEO",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  background-color: rgba(255, 255, 255, 1);
}

/* Contact page container */
.contact-page {
  background-color: rgba(255, 255, 255, 1);
  margin-left: auto;
  margin-right: auto;
  max-width: 480px;
  width: 100%;
  overflow: hidden;
}

.contact-container {
  background-color: rgba(250, 249, 249, 1);
  width: 100%;
  padding-bottom: 20px;
}

/* Logo section */
.logo-section {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  width: 100%;
  padding: 60px 80px 20px;
  flex-direction: column;
  align-items: center;
}

.logo-image {
  aspect-ratio: 5.1;
  object-fit: contain;
  object-position: center;
  width: 148px;
  max-width: 100%;
}

/* Address section */
.address-section {
  display: flex;
  margin-top: 25px;
  width: 100%;
  padding: 0 20px;
  flex-direction: column;
  align-items: flex-start;
  color: rgba(0, 0, 0, 1);
  font-weight: 400;
}

.section-title {
  font-size: 16px;
  font-weight: 500;
  margin-left: 13px;
}

.address-card {
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 1);
  align-self: stretch;
  display: flex;
  margin-top: 22px;
  padding: 25px 72px 13px 29px;
  flex-direction: column;
  align-items: flex-start;
}

.location-title {
  font-size: 20px;
  font-weight: 600;
}

.address-text {
  font-size: 14px;
  margin-top: 13px;
}

.contact-info {
  font-size: 13px;
  margin-top: 57px;
}

.map-link {
  color: rgba(0, 60, 255, 1);
  font-size: 13px;
  margin-top: 22px;
  margin-left: 12px;
  cursor: pointer;
  text-decoration: none;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid rgba(243, 243, 243, 1);
  margin-top: 28px;
  width: 100%;
}

/* Social section */
.social-section {
  display: flex;
  margin-top: 27px;
  width: 100%;
  padding: 0 20px;
  flex-direction: column;
  align-items: stretch;
  font-size: 15px;
  color: rgba(0, 0, 0, 1);
  font-weight: 500;
}

.social-card {
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  margin-top: 5px;
  padding: 18px 23px;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.social-card:first-of-type {
  margin-top: 31px;
}

.social-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 40px;
  flex-shrink: 0;
}

.social-link {
  margin: auto 0;
  flex-grow: 1;
  flex-shrink: 1;
  width: 244px;
  flex-basis: auto;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.website-button {
  cursor: pointer;
  text-decoration: none;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 1);
  margin-top: 45px;
  padding: 29px 70px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
}
