
    /* =========================
       Footer
    ========================= */
    .footer {
      background: var(--dark);
      color: var(--white);
      padding: 50px 0 20px;
      margin-top: 50px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-col h3 {
      color: var(--secondary);
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: #aaa;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--secondary);
      padding-left: 5px;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    p{
        font-family: 'Inter', sans-serif;
    }

    .social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .social-link:hover {
      background: var(--secondary);
      color: var(--dark);
      transform: translateY(-5px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #777;
      font-size: 0.9rem;
    }

    .footer-newsletter p {
      margin-bottom: 20px;
    }

    .newsletter-form {
      display: flex;
    }

    .newsletter-input {
      flex-grow: 1;
      padding: 14px 18px;
      border: none;
      border-radius: var(--radius-sm) 0 0 var(--radius-sm);
      font-family: 'Inter', sans-serif;
    }

    .newsletter-btn {
      background-color: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 0 20px;
      cursor: pointer;
      transition: var(--transition);
    }

    .newsletter-btn:hover {
      background-color: var(--accent);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #777;
      font-size: 0.9rem;
    }

     @media (max-width: 768px) {

.newsletter-form {
        flex-direction: column;
      }
      
      .newsletter-input,
      .newsletter-btn {
        border-radius: var(--radius-sm);
        width: 100%;
      }
      
      .newsletter-btn {
        margin-top: 10px;
        padding: 14px;
      }}