/* Basic Footer Styling */
.footer {
    margin-top: 70px;
    background-color: var(--blue);
    color: #f1f1f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-section {
    flex: 1;
    margin: 20px;
    min-width: 200px;
  }
  .footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
  }
  .footer-section p,
  .footer-section ul,
  .footer-section li {
    font-size: 0.9em;
    line-height: 1.6;
  }
  
  /* Logo Section */
  .footer .logo h2 {
    color: var(--yellow);
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  /* Links Section */
  .footer-section.links ul {
    list-style-type: none;
    padding: 0;
  }
  .footer-section.links li {
    margin-bottom: 10px;
  }
  .footer-section.links a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-section.links a:hover {
    color: var(--yellow);
  }
  
  /* Newsletter Section */
  .footer-section.newsletter p {
    margin-bottom: 10px;
    font-size: 0.9em;
  }
  .newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 3px;
    outline: none;
  }
  .newsletter-form button {
    padding: 10px 20px;
    background-color: var(--yellow);
    border: none;
    color: var(--blue);
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .newsletter-form button:hover {
    background-color: var(--yellow);
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.8em;
    color: #bbb;
    border-top: 1px solid #FFFF;
    margin-top: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-section {
      margin: 10px 0;
    }
    .newsletter-form {
      flex-direction: column;
      width: 100%;
    }
    .footer-section.links {
        width: 100%;
    }
    .footer-section p,ul,li,h2,h3,a {
        text-align: left;
    }
    .newsletter-form input,
    .newsletter-form button {
      width: 300px;
      box-sizing: border-box;
    }
  }
  