.footer {
  background-color: #ffffff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
  border-top: 1px solid #eaeaea;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footer-section {
  margin-bottom: 20px;
}

.footer-title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #4cbb17;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  color: #666;
  font-size: 20px;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #4cbb17;
}

.newsletter {
  margin-top: 20px;
}

.newsletter-title {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.newsletter-button {
  background-color: #4cbb17;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-button:hover {
  background-color: #3da614;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
      grid-template-columns: 1fr;
  }
  
  .newsletter-form {
      flex-direction: column;
  }
  
  .newsletter-button {
      width: 100%;
  }
}