/* Page-specific styles for About, Privacy, Terms, Cookie Policy */

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

.page-header h1 {
  font-size: 2.5rem;
  color: #1A202C;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: #4A5568;
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 4rem 0;
  background: #FDFCFC;
}

.content-block {
  margin-bottom: 3rem;
}

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

.content-block h2 {
  color: #1A202C;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.content-block p {
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.content-block em {
  color: #7A9C7E;
  font-style: italic;
}

/* About page specific styles */
.about-hero {
  margin-bottom: 4rem;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-hero-text h2 {
  color: #1A202C;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-hero-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(122, 156, 126, 0.15);
}

.content-with-illustration,
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-with-image .content-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(122, 156, 126, 0.15);
}

.content-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1rem;
  background: #FDFCFC;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(122, 156, 126, 0.1);
}

.value-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.value-item h3 {
  color: #1A202C;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.value-item p {
  color: #4A5568;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Header link styling for pages */
.header .logo-brand a {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s ease;
}

.header .logo-brand a:hover {
  opacity: 0.8;
}

/* Responsive design for pages */
@media (max-width: 768px) {
  .page-header {
    padding: 3rem 0;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-content {
    padding: 3rem 0;
  }
  
  .content-block h2 {
    font-size: 1.5rem;
  }
  
  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-with-illustration,
  .content-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-with-image .content-image {
    order: -1;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-item {
    padding: 1.5rem 1rem;
  }
}