.about-section {
  position: relative;
  overflow: hidden;
}

.about-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  position: relative;
}

.about-overlay {
  background: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

.about-us-title {
  font-size: 40px;
  color: var(--dark-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
}

.about-us-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--dark-blue);
  border-radius: 2px;
}

.about-subtitle {
  font-size: 24px;
  color: #666;
  font-weight: 300;
  margin-bottom: 3rem;
}

.about-content {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.about-quote {
  font-size: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 5px solid var(--dark-blue);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.blockquote-footer {
  float: right;
}

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

  .about-subtitle {
    font-size: 1.2rem;
  }

  .gallery-item img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .about-us-title {
    font-size: 2rem !important;
  }

  .about-content {
    font-size: 1rem;
  }

  .gallery-item img {
    height: 180px;
  }
  .about-quote {
    font-size: 16px;
    padding: 1rem;
  }
}
