.footer {
    background: var(--bg-card);
    color: white;
    padding: 50px 20px 30px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-text {
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.6;
    color: #dbeafe;
}

.footer-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.footer-section {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: white;
}

.footer-section a {
    color: #dbeafe;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #60a5fa;
    transform: translateY(-2px);
}

.copyright {
    font-size: 14px;
    color: #cbd5e1;
    margin-top: 25px;
}

@media (max-width: 768px) {
  .footer {
    padding: 35px 15px 20px;
    margin-top: 50px;
  }

  .footer-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .footer-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
  }

  .footer-section {
    min-width: unset;
    gap: 6px;
  }

  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .footer-section a {
    font-size: 15px;
  }

  .copyright {
    font-size: 13px;
    margin-top: 15px;
  }
}