.footer {
  background-color: #111;
  color: #f0f0f0;
  padding: 0 20px 30px 20px;
}

.footer .container{
  padding: 50px 0 0;
  text-align: center;
}

.footer-container {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.footer-column h3 {
  display: flex;
  margin-bottom: 15px;
  font-weight: 600;
  flex-wrap: wrap;
}

.footer-column p {
  line-height: 1.6;
}

.footer-column p:hover {
  color: #098317;
}

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

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

.footer-column a {
  color: #f0f0f0;
  text-decoration: none;
}

.footer-column a:hover {
  color: #098317;
}

.footer-logo {
  width: 50px;
  height: auto;
  margin-bottom: 15px;
  display: block;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #222;
    color: #fff;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: #098317;
}

.newsletter-form button {
    padding: 12px;
    background: #098317;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    margin-top: 0;
}

.newsletter-form button:hover {
    background: #0ba41d;
    transform: translateY(-2px);
}

/* --- Horizontal Divider Lines --- */
.footer-divider {
    border: 0;
    height: 1px;
    background: #333;
    width: 90%;
    max-width: 1500px;
    margin: 40px auto 0 auto;
}

.footer-divider.top-divider {
    margin: 0 auto 50px auto;
    width: 100%;
    max-width: none;
    background: rgba(255, 255, 255, 0.1);
}

.copyright-section {
    padding: 20px 0;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}