/* Auxiliary Pages Specific Styles */

/* Center alignment for all content */
.auxiliary-section {
  text-align: center;
}

.auxiliary-section .container {
  text-align: center;
}

.auxiliary-section h2,
.auxiliary-section p,
.auxiliary-section ul {
  text-align: center;
}

/* Content layout styles */
.content-with-image {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin: var(--space-lg) 0;
}

.text-content {
  flex: 1;
}

.image-content {
  flex: 0 0 300px;
}

.image-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Illustration containers */
.team-illustration,
.features-showcase,
.community-illustration,
.future-vision,
.awards-showcase {
  margin: var(--space-lg) 0;
  text-align: center;
}

.team-illustration svg,
.features-showcase svg,
.community-illustration svg,
.future-vision svg,
.awards-showcase svg {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-header {
  background-color: var(--primary-light);
  padding: var(--space-xl) 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.page-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.auxiliary-section {
  padding: var(--space-xl) 0;
}

.auxiliary-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text-dark);
}

.auxiliary-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.placeholder-content {
  padding: var(--space-lg);
  background-color: var(--bg-gray);
  border-radius: 8px;
  border: 2px dashed var(--border-color);
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-content p {
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

/* Image containers for auxiliary pages */
.content-with-image .image-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.values-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
  text-align: left;
  display: inline-block;
  max-width: 800px;
}

.values-list li {
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  line-height: 1.8;
}

.values-list li strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 4px;
}

.values-list li {
  color: var(--text-light);
  text-align: left;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
  .content-with-image {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .image-content {
    flex: none;
    width: 100%;
  }
  
  .page-header h1 {
    font-size: 28px;
  }

  .page-header p {
    font-size: 16px;
  }

  .auxiliary-section h2 {
    font-size: 22px;
  }

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

  .values-list li {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  .content-with-image {
    gap: var(--space-md);
  }
  
  .image-content img {
    height: 150px;
  }
  
  .page-header {
    padding: var(--space-lg) 0;
  }

  .page-header h1 {
    font-size: 20px;
  }

  .page-header p {
    font-size: 14px;
  }

  .auxiliary-section {
    padding: var(--space-lg) 0;
  }

  .auxiliary-section h2 {
    font-size: 18px;
  }

  .auxiliary-section p {
    font-size: 14px;
  }

  .placeholder-content {
    padding: var(--space-md);
    min-height: 150px;
  }

  .values-list li {
    padding: var(--space-sm);
    margin-bottom: 8px;
  }
}
