/* Site Footer */
.site-footer {
  background-color: #f5f5f5;
  padding: 60px 40px;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #e0e0e0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Footer Content Grid */
.footer-content-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 80px;
  align-items: start;
}

/* Footer Links */
.footer-left-links,
.footer-right-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-left-links a,
.footer-right-links a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: opacity 0.3s ease;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.footer-left-links a:hover,
.footer-right-links a:hover {
  opacity: 0.6;
}

/* Newsletter Section */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 15px 0;
  letter-spacing: 0.3px;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  text-align: center;
}

.newsletter-form {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #000000;
  align-items: center;
}

.newsletter-input {
  flex: 1;
  padding: 10px 0;
  border: none;
  background-color: transparent;
  font-size: 14px;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  outline: none;
  color: #000000;
  letter-spacing: 0.3px;
}

.newsletter-input::placeholder {
  color: #999999;
}

.newsletter-button {
  padding: 10px 0;
  background-color: transparent;
  color: #000000;
  border: none;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.newsletter-button:hover {
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-content-grid {
    gap: 60px;
  }
}

@media (max-width: 992px) {
  .site-footer {
    padding: 50px 30px;
  }

  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-left-links,
  .footer-right-links {
    align-items: center;
  }

  .footer-newsletter {
    order: -1;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px;
  }

  .footer-content-grid {
    gap: 35px;
  }

  .footer-left-links a,
  .footer-right-links a {
    font-size: 13px;
  }

  .newsletter-title {
    font-size: 13px;
  }

  .newsletter-input {
    font-size: 13px;
  }

  .newsletter-button {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 15px;
  }

  .footer-content-grid {
    gap: 30px;
  }

  .footer-left-links,
  .footer-right-links {
    gap: 6px;
  }

  .footer-left-links a,
  .footer-right-links a {
    font-size: 12px;
  }

  .newsletter-title {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .newsletter-input {
    font-size: 12px;
    padding: 8px 0;
  }

  .newsletter-button {
    font-size: 12px;
    padding: 8px 0;
  }
}
