/* Standardized Footer Styles */
footer {
  background-color: #254653;
  color: #ffffff;
  padding: 50px 0 0 0;
  margin-top: 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-section h4 {
  position: relative;
  font-size: 1.2em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #f0a500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #f0a500;
}

.footer-section p {
  line-height: 1.6;
  color: #e0e0e0;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  position: relative;
  padding-left: 15px;
}

.footer-section ul li a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #f0a500;
}

.footer-section ul li a:hover {
  color: #f0a500;
  transform: translateX(5px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  min-width: 30px;
  color: #f0a500;
  font-size: 1.1em;
}

.contact-info {
  flex: 1;
}

.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #f0a500;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #f0a500;
  transform: translateY(-3px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  margin-top: 30px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9em;
  color: #cccccc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-section {
    margin-bottom: 30px;
    padding: 0;
  }

  .footer-section:last-child {
    margin-bottom: 0;
  }
}
