* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.custom-section {
  position: relative;
  padding: 80px 0;
  background: #f8f9fa;
}

.vl-about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(120, 119, 198, 0.2) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.vl-about-content {
  text-align: center;
  margin-bottom: 80px;
}

.subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
}

.title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 30px;
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vl-about-content p {
  font-size: 18px;
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.assistance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.vl-about-icon-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vl-about-icon-box:hover {
  transform: translateY(-5px);
}

.vl-about-icon {
  width: 80px;
  height: 80px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vl-about-icon i {
  font-size: 32px;
  color: #2563eb;
}

.vl-icon-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vl-icon-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1e293b;
}

.vl-icon-content p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }

  .assistance-grid {
    grid-template-columns: 1fr;
  }

  .vl-about-icon-box {
    padding: 20px;
  }

  .vl-about-section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2rem;
  }

  .container {
    padding: 0 15px;
  }
}

/* Staggered animation delays */
.vl-about-icon-box:nth-child(1) {
  transition-delay: 0.1s;
}
.vl-about-icon-box:nth-child(2) {
  transition-delay: 0.2s;
}
.vl-about-icon-box:nth-child(3) {
  transition-delay: 0.3s;
}
.vl-about-icon-box:nth-child(4) {
  transition-delay: 0.4s;
}
.vl-about-icon-box:nth-child(5) {
  transition-delay: 0.5s;
}
.vl-about-icon-box:nth-child(6) {
  transition-delay: 0.6s;
}

/* Comprehensive Support Section Styles */
.comprehensive-support-section {
  position: relative;
  padding: 80px 0;
  background: #f8f9fa;
}

.support-header {
  text-align: center;
  margin-bottom: 60px;
}

.support-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.support-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  border-radius: 2px;
}

.support-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.support-description {
  font-size: 18px;
  color: #334155;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.support-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.support-icon {
  width: 80px;
  height: 80px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.support-card:hover .support-icon {
  background: #2563eb;
}

.support-icon i {
  font-size: 32px;
  color: #2563eb;
  transition: all 0.3s ease;
}

.support-card:hover .support-icon i {
  color: #fff;
}

.support-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e293b;
}

.support-content p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .support-title {
    font-size: 2rem;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .support-title {
    font-size: 1.75rem;
  }

  .support-description {
    font-size: 16px;
  }
}
