footer {
    background: rgba(78, 122, 117, 100);
    color: #fff;
    font-family: Inter, sans-serif;
    padding: 50px 20px;
    text-align: center;
  }
  
  footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }
  
  footer .footer-info {
    flex: 1 1 300px;
    font-size: 14px;
    line-height: 1.6;
  }
  
  footer .footer-info a {
    color: #fff;
    text-decoration: none;
  }
  
  footer .footer-logo {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  footer .footer-logo img {
    max-width: 280px;
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  footer .footer-form {
    flex: 1 1 300px;
    max-width: 350px;
  }
  
  footer .footer-form h3 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.06em;
    margin-bottom: 15px;
  }
  
  footer #footer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  footer #footer-form input,
  footer #footer-form textarea {
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 8px;
    background: none;
    color: #fff;
    font-size: 14px;
  }
  
  footer #footer-form textarea {
    height: 80px;
  }
  
  footer #footer-form button {
    padding: 10px;
    background: #fff;
    color: #03244c;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  footer #footer-form #status {
    font-size: 13px;
    margin-top: 5px;
  }
  
  footer hr {
    border: 0;
    border-top: 3px solid #fff;
    width: 80%;
    margin: 30px auto;
    opacity: 1;
  }
  
  footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  footer .footer-links a {
    color: #fff;
    text-decoration: none;
  }
  
  footer .footer-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    max-width: 900px;
    margin: 40px auto 0;
  }
  
  footer .footer-disclaimer a {
    color: #fff;
    text-decoration: underline;
    margin-right: 10px;
  }
  