/* Responsive Design Improvements */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .hero-section .floating-card {
    transform: scale(0.9);
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .hero-section .floating-card {
    transform: scale(0.8);
  }

  .hero-section .card-1 {
    top: 10%;
    left: 0;
  }

  .hero-section .card-3 {
    bottom: 10%;
    right: 0;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  header {
    padding: 0 15px;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    transition: height 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    height: auto;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .burger {
    display: block;
  }

  .auth-buttons {
    margin-right: 50px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-section .floating-card {
    display: none;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 20px;
  }

  .application-form {
    padding: 20px;
  }

  footer {
    padding: 50px 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    margin-top: 15px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }

  .hero-section {
    padding: 40px 0;
  }

  .cta-button,
  .cta-button-alt {
    width: 100%;
    margin-bottom: 10px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .testimonial-slider-controls {
    margin-top: 20px;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-avatar {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .application-form {
    padding: 15px;
  }

  .benefits-section {
    padding: 15px;
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-links,
  .footer-newsletter {
    margin-top: 30px;
  }

  .footer-bottom {
    margin-top: 30px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
  }
}

/* Improved Mobile Navigation */
.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px;
  transition: all 0.3s ease;
}

.burger.active .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active .line2 {
  opacity: 0;
}

.burger.active .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Notification Styling */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 0;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.notification-content {
  display: flex;
  align-items: center;
  padding: 15px 20px;
}

.notification-content i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-right: 10px;
}

#notification-message {
  font-size: 0.95rem;
  color: #333;
}