.wwa-container {
  margin: 0 auto;
}

/* Header Section */
.wwa-header-section {
  margin-top: 60px;
  text-align: center;
  padding: 60px 0;
  background-image: url("../images/wwa-banner1.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}

.wwa-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.8)
  );
  backdrop-filter: saturate(150%);
  -webkit-backdrop-filter: blur(2px) saturate(180%);
  z-index: 1;
}

.wwa-header-content {
  position: relative;
  z-index: 2;
}

.wwa-main-title {
  padding: 5rem 0;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 15px;
  /* text-transform: uppercase; */
  letter-spacing: 1px;

  background: linear-gradient(to top right, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
}

/* About Us Card */
.wwa-about-card {
  background: #ffffff;
  color: #333;
  margin: 3rem 5rem 0.5rem 5rem;
  padding: 4rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wwa-about-label {
  font-size: 0.875rem;
  font-weight: 300;
  text-align: left;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: #555555;
}

.wwa-about-text {
  font-size: 2.5rem;
  max-width: 1000px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.wwa-rainbow-text {
  background: linear-gradient(
    90deg,
    #c798ff 0%,
    #0f67cc 27%,
    #ccb50f 51%,
    #9950b8 73%,
    #ff6262 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Image Placeholders */
.wwa-images-grid {
  padding: 0 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.wwa-image-placeholder {
  aspect-ratio: 4/5;
  background: #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.wwa-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.wwa-vmg-grid {
  margin-bottom: 3rem;
}

.wwa-vmg-image {
  background: #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.wwa-vmg-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Main Content */
.wwa-main-content {
  margin: 5rem;
  background: white;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.wwa-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 3rem;
}

/* Vision, Mission, Goals Grid */
.wwa-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.wwa-info-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.wwa-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  text-align: left;

  background: linear-gradient(to top right, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
}

.wwa-info-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  text-align: left;
}

/* Goals Card - Full Width */
.wwa-goals-card {
  grid-column: 1 / -1;
}

.wwa-goals-list {
  list-style: none;
  padding: 0;
}

.wwa-goals-item {
  font-size: 1rem;
  line-height: 1.2;
  color: #4a5568;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.wwa-goals-item::before {
  content: "•";
  color: #2563eb;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .wwa-main-title {
    font-size: 2.5rem;
  }

  .wwa-about-text {
    font-size: 1.25rem;
  }

  .wwa-about-card,
  .wwa-main-content {
    margin: 1.2rem;
    padding: 1.2rem;
  }

  .wwa-images-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .wwa-vmg-image img {
    width: 100%;
    height: 40%;
  }

  .wwa-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wwa-goals-item {
  line-height: 1.5;
}

  .wwa-header-section {
    margin-top: 60px;
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .wwa-main-title {
    font-size: 2rem;
  }

  .wwa-about-text {
    font-size: 1.1rem;
  }
}
