footer {
    color: #fff;
    padding: 20px 20px;
    text-align: center;
    background-color: #202b35;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3, .footer-section h4 {
    color: #2ecc71;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-links a {
    margin-right: 10px;
    color: #2ecc71;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0;
  gap: 20px;
}

.footer-bottom,
.payments-methods {
  flex: 1;
  min-width: 300px;
}

.footer-bottom p,
.payments-methods p {
  margin: 5px 0;
}

.payments-methods i {
  margin: 0 5px;
  font-size: 20px;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}




#subscribe-form {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 8px;
  background: #1566df45;
  border: 1px solid #1566df;
}

#subscribe-form .form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

#subscribe-form .input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  background-color: #f0f0f0;
  border-radius: 6px;
  padding: 5px 10px;
}

#subscribe-form .input-wrapper .icon {
  margin-right: 8px;
  font-size: 18px;
  color: #333;
}

#subscribe-form input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  padding: 10px 5px;
}

#subscribe-form button {
  background-color: #00bfff;
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
}

#subscribe-message {
  color: #00c931;
  font-weight: bold;
}
