/* Simple About Us CSS */


.content-image {
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}

.content-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.background img{
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

.slide-in-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  text-align: center;
  opacity: 0;
  animation: slideInFromLeft 1.5s ease-out forwards;
  z-index: 2;
}

@keyframes slideInFromLeft {
  0% {
    transform: translate(-150%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.about-text {
  margin-right: 10px;
}

.us-text {
  color: #ff6b35;
}

.background {
  width: 100%;
}

.background-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content styling */
.content-container {
  background: white;
  padding: 10px 90px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 20px;
}

.content h3.second {
  margin-top: 30px;
}

.content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .slide-in-heading {
    font-size: 2.5rem;
  }
  
  .content-container {
    padding: 30px 20px;
  }
  
  .content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .slide-in-heading {
    font-size: 2rem;
  }
  
  .content-container {
    padding: 25px 15px;
  }
  
  .content h3 {
    font-size: 1.3rem;
  }
}