/* About Section Styles */
#about {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: #003366;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.about-content {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 50px;
}

.row {
  display: flex;
  width: 100%;
  align-items: stretch;
}

.col-lg-6 {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 15px;
  object-fit: cover;
}

.about-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-text {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-text h3 {
  color: #003366;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-text h3 span {
  color: #D32F2F;
}

.about-text p {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-features-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: auto;
}

.about-feature-item {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.about-feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left-color: #D32F2F;
  background: #fff;
}

.about-feature-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #003366, #004d99);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-right: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 51, 102, 0.2);
}

.about-feature-item:hover .about-feature-icon {
  background: linear-gradient(135deg, #D32F2F, #B71C1C);
  transform: scale(1.08);
}

.about-feature-text h5 {
  color: #003366;
  font-weight: 700;
  margin: 0 0 2px 0;
  font-size: 0.85rem;
}

.about-feature-text p {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .about-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  #about {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .col-lg-6 {
    width: 100%;
  }

  .about-image img {
    height: 300px;
  }

  .about-text {
    height: auto;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .about-features-row {
    margin-top: 20px;
  }

  .about-feature-item {
    padding: 12px 10px;
  }

  .about-feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-right: 12px;
  }

  .about-feature-text h5 {
    font-size: 0.85rem;
  }

  .about-feature-text p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 1.75rem;
  }

  .about-text h3 {
    font-size: 1.2rem;
  }

  .about-feature-item {
    padding: 10px 8px;
  }

  .about-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: 10px;
  }
}