/* Page-specific styles for auxiliary pages */

.page-container {
  min-height: 70vh;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.page-container h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 64px;
  color: var(--text-primary);
  text-align: center;
  position: relative;
}

.page-container h1::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

/* About sections */
.about-section {
  margin-bottom: 56px;
  padding: 48px;
  background: white;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-section:hover::before {
  transform: scaleX(1);
}

.about-section:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: left;
  color: var(--primary);
  position: relative;
}

.about-section h2::after {
  display: none;
}

.about-section p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: left;
  margin: 0;
  max-width: none;
}

/* About page specific styles */
.about-content-with-image {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: center;
}

.about-content-with-image .about-text {
  text-align: left;
}

.about-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.about-content-with-svg {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 48px;
  align-items: center;
}

.about-content-with-svg .about-text {
  text-align: left;
}

.about-svg svg {
  width: 100%;
  height: 180px;
  filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.1));
}

/* Empty sections for placeholder content */
.empty-section {
  text-align: center;
  padding: 80px 48px;
  background: white;
  border-radius: 24px;
  border: 2px dashed var(--border-medium);
  position: relative;
  overflow: hidden;
}

.empty-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.02) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.empty-section p {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0;
  position: relative;
  z-index: 1;
  font-style: italic;
}

/* Enhanced responsive design for auxiliary pages */
@media (max-width: 1024px) {
  .page-container {
    padding: 100px 0;
  }

  .about-section {
    padding: 40px;
    margin-bottom: 48px;
  }

  .empty-section {
    padding: 64px 40px;
  }
}

@media (max-width: 768px) {
  .page-container {
    padding: 80px 0;
  }

  .page-container h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 48px;
  }

  .page-container h1::after {
    width: 80px;
    height: 4px;
  }

  .about-section {
    margin-bottom: 40px;
    padding: 32px;
    border-radius: 20px;
  }

  .about-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .about-section p {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-content-with-image,
  .about-content-with-svg {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image img {
    height: 200px;
  }

  .about-svg svg {
    height: 160px;
  }

  .empty-section {
    padding: 48px 32px;
    border-radius: 20px;
  }

  .empty-section p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-container {
    padding: 60px 0;
  }

  .about-section {
    padding: 24px;
    margin-bottom: 32px;
    border-radius: 16px;
  }

  .about-section h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .about-section p {
    font-size: 15px;
  }

  .about-image img {
    height: 180px;
  }

  .about-svg svg {
    height: 140px;
  }

  .empty-section {
    padding: 40px 24px;
    border-radius: 16px;
  }

  .empty-section p {
    font-size: 15px;
  }
}