/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #fbf1e7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  background-color: #ffffff;
  padding: 0px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-image {
  height: 60px;
  max-height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #4a5565;
  line-height: 1.3;
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  text-align: center;
}

/* Construction Icon */
.construction-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 48px;
}

/* Heading */
.heading {
  font-size: 34px;
  font-weight: 500;
  color: #20478f;
  line-height: 1.25;
  letter-spacing: 0.26px;
  max-width: 672px;
  margin-bottom: 24px;
}

/* Subtext */
.subtext {
  font-size: 18px;
  font-weight: 400;
  color: #4a5565;
  line-height: 1.4;
  letter-spacing: -0.45px;
  max-width: 767px;
  margin-bottom: 48px;
}

/* Humanitarian Section */
.humanitarian-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.phone-icon {
  width: 85px;
  height: 77px;
}

.humanitarian-number {
  font-size: 96px;
  font-weight: 900;
  color: #20478f;
  line-height: 1;
  letter-spacing: -0.3px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.humanitarian-number:hover {
  opacity: 0.8;
}

/* Donation Info */
.donation-info {
  font-size: 13px;
  font-weight: 400;
  color: #4a5565;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 80px;
}

/* Contact Info */
.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-link {
  font-size: 16px;
  font-weight: 400;
  color: #20478f;
  text-decoration: none;
  line-height: 1.5;
  letter-spacing: -0.3px;
  transition: opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.8;
}

.contact-separator {
  font-size: 16px;
  color: #99a1af;
  line-height: 1.5;
}

/* Social Links */
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #20478f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #183a75;
}

/* Footer */
.footer {
  background-color: #ffffff;
  padding: 25px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-text {
  font-size: 14px;
  font-weight: 400;
  color: #4a5565;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .heading {
    font-size: 28px;
  }

  .subtext {
    font-size: 16px;
  }

  .humanitarian-number {
    font-size: 64px;
  }

  .phone-icon {
    width: 60px;
    height: 54px;
  }

  .contact-info {
    flex-direction: column;
    gap: 8px;
  }

  .contact-separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0px 16px;
  }

  .header-content {
    gap: 8px;
  }

  .logo-image {
    height: 50px;
    max-height: 50px;
    max-width: 150px;
  }

  .logo-subtitle {
    font-size: 11px;
  }

  .main-content {
    padding: 100px 16px 60px;
  }

  .heading {
    font-size: 24px;
  }

  .subtext {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .humanitarian-number {
    font-size: 48px;
  }

  .construction-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 32px;
  }

  .donation-info {
    margin-bottom: 48px;
  }
}
