/* Page-specific styles */
.page-main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.page-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2d1b69 100%);
  color: white;
  padding: calc(var(--spacing-unit) * 8) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0;
}

.page-content {
  padding: calc(var(--spacing-unit) * 8) 0;
}

.content-block {
  background: white;
  padding: calc(var(--spacing-unit) * 4);
  border-radius: calc(var(--border-radius) * 2);
  margin-bottom: calc(var(--spacing-unit) * 4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  color: var(--text-primary);
  font-size: 24px;
  margin-bottom: calc(var(--spacing-unit) * 3);
  padding-bottom: calc(var(--spacing-unit) * 2);
  border-bottom: 2px solid var(--primary-color);
}

.content-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.content-block p:last-child {
  margin-bottom: 0;
}

/* About page specific styles */
.about-intro {
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 8);
}

.about-intro h2 {
  color: var(--text-primary);
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.about-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  align-items: center;
  margin-bottom: calc(var(--spacing-unit) * 8);
}

.about-text h3 {
  color: var(--text-primary);
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--border-radius) * 2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-section {
  text-align: center;
}

.team-section h3 {
  color: var(--text-primary);
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.team-image {
  max-width: 600px;
  margin: 0 auto calc(var(--spacing-unit) * 4);
}

.team-image img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--border-radius) * 2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive design for pages */
@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--spacing-unit) * 6) 0;
  }
  
  .page-content {
    padding: calc(var(--spacing-unit) * 6) 0;
  }
  
  .content-block {
    padding: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 4);
  }
}