/* About Page Styles */
.main-header {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem 0 0;
  background: transparent;
  z-index: 100;
}

/* About Hero Banner */
.about-hero-banner {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url('images/compressedAboutUs.webp');
  background-size: cover;
  background-position: center;
  background-color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 1.5rem auto;
  width: 80%;
}

.about-hero-content h1 {
  font-size: 5rem;
  color: white;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin: 0;
  text-shadow: 
    0 0 20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(0, 0, 0, 0.2);
}

.about-hero-banner + .section-title {
  margin-top: 4rem;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0) 40%);
  z-index: 1;
}

/* About Text Sections */
.about-text-section {
  padding: 4rem 2rem 2rem 2rem;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-text-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.about-text-container p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  text-indent: 2rem;
}

.highlight-blue {
  color: #00a0e0;
  font-weight: 700;
}

.about-buttons-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.about-text-btn {
  background-color: #00a0e0;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  min-height: 45px;
}

.about-text-btn:hover {
  background-color: #08acf2;
}

.about-text-btn.secondary-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.about-text-btn.secondary-btn:hover {
  background-color: white;
  color: #00a0e0;
}

/* Mobile Responsive */
@media (max-width: 993px) {
  .about-hero-banner {
    height: 350px;
  }
  
  .about-hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .about-hero-banner {
    height: 300px;
  }
  
  .about-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .about-text-container p {
    font-size: 1.2rem;
  }
  
  .about-buttons-container {
    flex-direction: column;
    align-items: center;
  }

  .about-text-side h3 {
    font-size: 1.8rem;
  }

  .about-text-side p {
    font-size: 1.2rem;
  }

  .about-image-text-container {
    gap: 2rem;
  }
  .about-image-text-section .about-text-side p {
  font-size: 1.2rem !important;
}

.about-image-text-section .about-text-side h3 {
  font-size: 1.8rem !important;
}
}

/* Image with Text Section */
.about-image-text-section {
  padding: 4rem 2rem 6rem 2rem;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-image-text-container {
  max-width: 1200px;
  width: 100%;
}

.about-image-side img {
  width: 100%;
  max-width: 700px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.about-text-side {
  color: #ffffff;
  width: 100%;
  text-align: center;
}

.about-text-side h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #00a0e0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-align: center;
}


.about-text-side p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  text-indent: 2rem;
}

