
:root{
    --verde-color: #094e2a; 
    --galben-color: #DDCEB6; 
    --negru-color: #03160C; 
}
/* Footer Section */
.footer {
    background-color: #1d1d1d;
    color: #ffffff;
    width: 100%; /* Asigură-te că footer-ul ocupă 100% din lățime */
    position: relative; /* Poate ajuta la evitarea problemelor de poziționare */
    left: 0; /* Asigură-te că footer-ul este aliniat la stânga */
  }
  
  div .footer {
    width: 100%;
    display: inline-block;
  }
  
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #444; /* Subtle bottom border */
  }
  
  .footer-column {
    flex: 1;
    margin: 20px;
    max-width: 220px;
  }
  
  .footer-column h3 {
    color: #748d46; /* Same greenish color for headings */
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .footer-column p, .footer-column a {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .footer-column a {
    text-decoration: none;
  }
  
  .footer-column a:hover {
    text-decoration: underline;
  }
  
  /* Newsletter Form */
  .footer-column form {
    display: flex;
    flex-direction: column;
  }
  
  .footer-column input {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
  }
  
  .subscribe-btn {
    background-color: #748d46;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .subscribe-btn:hover {
    background-color: #5f7038;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    flex-wrap: wrap;
    flex-direction: column;
    display: flex;
    margin: auto;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    padding-top: 20px;
    color: #ccc;
  }
  .footer-bottom p{
    font-size: 15px;
  }
  .footer-bottom img{
    width: 150px;
  }
  /* Icons */
  .footer-column i {
    font-size: 20px;
    margin-right: 8px;
    color: #748d46; /* Icon color to match the greenish tint */
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .footer-content {
      width: 85%;
        flex-wrap: wrap;
        align-items: center;
    }
  
  .footer-column {
      flex: 1; /* Coloanele vor avea dimensiuni egale */
  }
  
    .footer-column {
        max-width: 100%;
        text-align: center;
        margin: 10px 0;
    }
  }
  .footer-img{
    margin: auto;
    width: 15%;
  }
  @media (max-width: 480px) {
    .footer-img{
      width: 55%;
    }
    .info-section {
      background-color: #2b2b2b; /* Dark background to match the image */
      padding: 50px 20px;
      text-align: left; /* Align text to the left */
      color: #fff;
    }
    .info-section h2 {
        font-size: 26px;
    }
  
    .info-section p {
        font-size: 16px;
    }
  
    .footer-column h3 {
        font-size: 16px;
    }
  
    .footer-column p, .footer-column a {
        font-size: 12px;
    }
  
    .cta-button {
        font-size: 16px;
        padding: 12px 20px;
    }
  }