.about-section {
  min-height: 90vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  padding: 2rem 1.5rem;
}

.container {
  width: 100%;
  max-width: 1400px; 
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: #003366; 
  letter-spacing: 1.5px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 2rem;
  font-weight: 500;
}

.left-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card {
  background: #ffffff;
  padding: 1.5rem;
  
  border-radius: 40px 14px; 
  
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-card h2 {
  font-size: 1.3rem;
  color: #003366;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.5rem;
}

.about-card p, .about-card ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.about-card ul {
  list-style-type: disc;
  padding-left: 1.2rem;
}

@media (min-width: 992px) {
  .about-section {
    height: 100vh; 
    min-height: 100vh;
    padding: 0 3rem;
  }
  
  .section-title {
    font-size: 3rem;
    margin-top: 0; 
    margin-bottom: 3rem;
  }

  .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .left-column {
    flex: 1; 
  }

  .left-cards {
    flex-direction: row;
    gap: 2rem;
  }

  .left-cards .about-card {
    flex: 1;
  }

  .right-column {
    flex: 0 0 20vw;
  }
}

@media (max-width: 768px) {
      .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }
    
    
}