/* Auxiliary Pages Styles */

/* Page Hero Section */
.page-hero {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  padding: 60px 0;
  text-align: center;
}

.page-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 18px;
  color: var(--medium-gray);
  line-height: 1.5;
}

/* Content Blocks */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 20px;
}

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

/* Section Images */
.section-image {
  width: 100%;
  max-width: 600px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 32px auto;
  display: block;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Gray Background Section */
.gray-bg {
  background-color: var(--light-gray);
}

/* About Page Specific Styles */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.approach-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-gray);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.approach-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.approach-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.approach-card p {
  color: var(--medium-gray);
  line-height: 1.5;
  font-size: 14px;
}

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

.value-item {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.value-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.value-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.value-item p {
  color: var(--medium-gray);
  line-height: 1.5;
  font-size: 14px;
}

/* Legal Pages Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.contact-info {
  background-color: var(--light-gray);
  padding: 24px;
  border-radius: 8px;
  margin-top: 24px;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 16px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info a {
  color: var(--teal);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--charcoal);
}

/* Cookie Table Styles */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-gray);
}

.cookie-table th {
  background-color: var(--charcoal);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.cookie-table td {
  font-size: 14px;
  color: var(--charcoal);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* Footer Updates */
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--teal);
}

/* Header Logo Link */
.logo-section a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .page-subtitle {
    font-size: 16px;
  }
  
  .section-image {
    height: 250px;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .value-image {
    height: 180px;
  }
  
  .legal-content h2 {
    font-size: 20px;
  }
  
  .legal-content h3 {
    font-size: 16px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .cookie-table {
    font-size: 12px;
  }
  
  .cookie-table th,
  .cookie-table td {
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 24px;
  }
  
  .section-image {
    height: 200px;
  }
  
  .value-image {
    height: 150px;
  }
  
  .legal-content {
    padding: 0 16px;
  }
  
  .legal-content ul {
    padding-left: 20px;
  }
  
  .contact-info {
    padding: 16px;
  }
}