.footer {
    margin-top: 80px;
  background-color: var(--main-color);
  color: #fff;
  padding: 60px 30px;

}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1 1 300px;
  margin-bottom: 40px !important;
}

.footer-left h2 {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 20px !important;
}

.subscribe {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  max-width: 400px;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.subscribe input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
}
.subscribe input::placeholder{
    color: #fff;
}
.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}
.social-icons a{
    height: 32px;
    width: 32px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    font-size: 20px;
    color: var(--main-color);
}
.subscribe button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}



.social-icons img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.footer-right {
  flex: 1 1;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: flex-end;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-column a {
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s;
}

.link-column a:hover {
  opacity: 0.7;
}

.country-select {
  margin-top: auto;
}

.country-select select {
  padding: 8px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .country-select {
    margin-top: 20px;
  }
  .footer-left {
    flex: 1 1 0;
    margin-bottom: 0 !important;
}
}
