  /* Base Styles */
  .modern-footer {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #6b7280;
    line-height: 1.6;
    background-color: #ffffff;
    border-top: 1px solid #f3f4f6;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Footer Top */
  .footer-top {
    padding: 60px 0 40px;
    background-color: #ffffff;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #E5322D;
  }

  .footer-logo svg {
    flex-shrink: 0;
  }

  .footer-about {
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #6b7280;
  }

  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: auto;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9fafb;
    color: #6b7280;
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background-color: #6366f1;
    color: white;
    transform: translateY(-3px);
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
  }

  .footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #E5322D 0%, #8b5cf6 100%);
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
  }

  .footer-links a:hover {
    color: #6366f1;
    padding-left: 5px;
  }

  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .footer-contact svg {
    flex-shrink: 0;
    color: #6366f1;
    margin-top: 3px;
  }

  .footer-contact span {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Footer Bottom */
  .footer-bottom {
    padding: 20px 0;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
  }

  .footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .copyright {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
  }

  .footer-legal {
    display: flex;
    gap: 20px;
  }

  .footer-legal a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
  }

  .footer-legal a:hover {
    color: #6366f1;
  }

  /* Responsive */
  @media (min-width: 768px) {
    .footer-bottom-content {
      flex-direction: row;
      justify-content: space-between;
    }
  }

  @media (max-width: 600px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .footer-top {
      padding: 40px 0 30px;
    }
    
    .footer-logo {
      margin-bottom: 15px;
    }
    
    .footer-title {
      margin-bottom: 15px;
    }
  }