/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: black;
}

header {
  text-align: center;
  padding: 20px;
}

.construction-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  margin-bottom: 15px;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* Footer Styles */
footer {
  width: 100%;
  background-color: #fff;
  padding: 20px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer-left {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.footer-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
}

.contact-info {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #e9eef7;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.icon {
  width: 18px;
  height: 18px;
}

.logo {
  height: 60px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

/* Dividers */
.horizontal-divider,
.vertical-divider {
  background-color: #ccc;
  margin: 0 10px;
}

.horizontal-divider {
  width: 1.5px;
  height: 40px;
}

.vertical-divider {
  width: 1px;
  height: 40px;
}

/* Responsive Layouts */
@media (max-width: 768px) {
  header {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .horizontal-divider,
  .vertical-divider {
    display: none;
  }

  .footer-left,
  .footer-right,
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .contact-item {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  header {
    padding: 20px 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .logo {
    height: 35px;
  }

  .contact-item {
    font-size: 0.8rem;
    padding: 6px 8px;
  }

  .icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 375px) {
  h1 {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.8rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
    padding: 8px 5px;
  }

  .logo {
    height: 30px;
  }
}

@media (max-width: 320px) {
  h1 {
    font-size: 1.3rem;
  }

  .subtitle {
    font-size: 0.75rem;
  }

  .footer-container {
    gap: 10px;
  }

  .contact-item {
    flex-direction: row;
    font-size: 0.75rem;
    padding: 6px;
  }

  .icon {
    width: 14px;
    height: 14px;
  }
}
