/* Additional styles for auxiliary pages */

.page-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
}

.nav-link:hover {
  background-color: var(--background-light);
  color: var(--primary-color);
}

.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f4 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.page-section {
  padding: 4rem 0;
}

.page-section.bg-light {
  background-color: var(--background-light);
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: left;
}

.section-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.feature-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.highlight-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.highlight-item p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 2rem 0 1rem 0;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* About Us specific styles */
.centered {
  text-align: center;
}

.content-with-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.content-with-visual.reverse {
  grid-template-columns: 1fr 1fr;
}

.content-with-visual.reverse .text-content {
  order: 1;
}

.content-with-visual.reverse .visual-element {
  order: 2;
}

.section-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.text-content {
  text-align: left;
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.innovation-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  text-align: center;
}

.innovation-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.innovation-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.innovation-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.commitment-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-visual {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.stat-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-light);
  font-size: 0.875rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  text-align: center;
}

.value-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive styles for pages */
@media (max-width: 768px) {
  .page-nav {
    gap: 1rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .section-content h2 {
    font-size: 1.75rem;
    text-align: center;
  }
  
  .section-content p {
    font-size: 1rem;
  }
  
  .feature-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 2rem 0;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .section-content {
    padding: 0 1rem;
  }
  
  .legal-content {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .content-with-visual {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-with-visual.reverse .text-content,
  .content-with-visual.reverse .visual-element {
    order: unset;
  }
  
  .innovation-grid,
  .commitment-stats,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .text-content {
    text-align: center;
  }
}