.about-section {
  background: 
  radial-gradient(circle at 10% 50%, rgba(100, 149, 237, 0.15) 0%, transparent 40%),
  radial-gradient(circle at 30% 60%, rgba(147, 197, 253, 0.15) 0%, transparent 40%),
  radial-gradient(circle at 60% 55%, rgba(186, 230, 253, 0.12) 0%, transparent 40%),
  radial-gradient(circle at 85% 60%, rgba(125, 211, 252, 0.1) 0%, transparent 40%);

  padding: 4rem 4rem;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 670px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.footer-content {
  text-align: left;
} 





.about-intro {
  margin-bottom: 1rem;
  max-width: 800px;
}

.about-intro p {
  color: #334155;
  font-size: 1.125rem;
  line-height: 1.8;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 2rem;
  font-weight: 800;
}

/* Add styles for strong elements within paragraphs */
.about-intro p strong {
  color: #1e40af;
  font-weight: 700;
}

.video-container {
  width: 100%;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .about-section {
    padding: 2rem 1rem;
    margin: 0 1rem;
    border-radius: 8px;
  }
  
  .about-intro p {
    font-size: 1rem;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  

  
  .video-container {
    margin: 2rem 0;
  }
}