/* About Page Styles */

.fullWidthContainer {
  width: 100%;
  background: #f9f9f9;
}

.fullWidthContainer > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.heroSection {
  background: linear-gradient(135deg, #9B8BB4 0%, #B8A5D6 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 100% !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.heroSection h1 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.heroSection p {
  color: white;
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.95;
}

.fullWidthContainer h2 {
  color: #8B7BA8;
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #B8A5D6;
}

.fullWidthContainer p {
  color: #5A4A6A;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.fullWidthContainer a {
  color: #b328c5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.fullWidthContainer a:hover {
  color: #c825dd;
  text-decoration: underline;
}

/* Back to Top Button */
.backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #b328c5;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 1000;
}

.backToTop:hover {
  background: #c825dd;
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.backToTop i {
  font-size: 20px;
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
  .heroSection h1 {
    font-size: 2rem;
  }

  .heroSection p {
    font-size: 1.1rem;
  }

  .fullWidthContainer h2 {
    font-size: 1.6rem;
  }

  .fullWidthContainer p {
    font-size: 1rem;
  }

  .backToTop {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .backToTop i {
    font-size: 18px;
  }
}

@media only screen and (max-width: 480px) {
  .heroSection {
    padding: 40px 20px;
  }

  .heroSection h1 {
    font-size: 1.6rem;
  }

  .heroSection p {
    font-size: 1rem;
  }
}
