/* Auxiliary Pages Styles */

.page-main {
  flex: 1;
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: 2.8em;
  margin-bottom: 16px;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1em;
  margin: 0;
  font-weight: 300;
}

.page-content {
  padding: 60px 0;
  text-align: center;
}

.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.8em;
}

.content-block p {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1em;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.values-list {
  list-style: none;
  margin: 24px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.values-list li {
  padding: 16px 24px;
  margin-bottom: 12px;
  background: var(--neutral-50);
  border-left: 4px solid var(--primary);
  border-radius: 4px;
}

.values-list li strong {
  color: var(--primary);
}

.image-container {
  margin: 32px 0;
  text-align: center;
}

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

.content-svg {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}

.mission-visual,
.tech-visual,
.achievements-visual {
  margin: 32px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 48px 0;
  }

  .page-header h1 {
    font-size: 2em;
  }

  .page-subtitle {
    font-size: 1em;
  }

  .page-content {
    padding: 48px 0;
  }

  .content-block h2 {
    font-size: 1.5em;
    margin-bottom: 16px;
  }

  .content-block {
    margin-bottom: 36px;
  }

  .content-image {
    max-height: 250px;
  }
}

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

  .page-header h1 {
    font-size: 1.6em;
  }

  .page-subtitle {
    font-size: 0.95em;
  }

  .page-content {
    padding: 40px 0;
  }

  .content-block h2 {
    font-size: 1.3em;
    margin-bottom: 14px;
  }

  .content-block {
    margin-bottom: 28px;
  }

  .values-list li {
    padding: 12px 16px;
    font-size: 0.95em;
    margin-bottom: 8px;
  }

  .content-image {
    max-height: 200px;
  }
}
