.modern-footer {
    background-color: #111827;
    color: #f9fafb;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    padding-top: 60px;
    overflow: hidden;
  }
  
  .footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
    color: #1f2937;
    margin-top: -1px;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }
  
  .footer-logo h2 {
    font-size: 1.5rem;
    margin: 10px 0 5px;
  }
  
  .footer-logo span {
    color: #38bdf8;
  }
  
  .footer-logo p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .footer-logo .social-links a {
    margin-right: 10px;
    font-size: 1rem;
    color: #f9fafb;
    transition: color 0.3s ease;
  }
  
  .footer-logo .social-links a:hover {
    color: #38bdf8;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links h3,
  .footer-contact h3,
  .footer-newsletter h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #38bdf8;
  }
  
  .footer-links a,
  .footer-contact li {
    display: block;
    font-size: 0.9rem;
    color: #f3f4f6;
    margin-bottom: 8px;
    text-decoration: none;
  }
  
  .footer-contact li i {
    margin-right: 8px;
  }
  
  .footer-newsletter p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 8px 10px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    max-width: 220px;
  }
  
  .newsletter-form button {
    padding: 8px 14px;
    background-color: #38bdf8;
    color: #111827;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background-color: #0ea5e9;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    background-color: #0f172a;
  }
  
  .footer-legal {
    margin-top: 8px;
  }
  
  .footer-legal a {
    color: #94a3b8;
    margin: 0 8px;
    text-decoration: none;
  }
  
  .footer-legal a:hover {
    color: #38bdf8;
  }
  
  .footer-contact li,
  .footer-logo p {
    word-wrap: break-word;
  }
  
  @media (max-width: 600px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .newsletter-form {
      flex-direction: column;
    }
  
    .newsletter-form input {
      max-width: 100%;
    }
  
    .footer-contact li {
      font-size: 0.85rem;
    }
  }
  