/* Auxiliary Pages Styles */

.main-content {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
  background-color: #FAF8F5;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-title {
  font-size: 2.5rem;
  color: #2B4C7C;
  margin: 0;
  font-weight: 700;
}

.content-section {
  background-color: white;
  padding: 3rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-section h2 {
  font-size: 1.75rem;
  color: #2B4C7C;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #F5F3F0;
  padding-bottom: 0.5rem;
}

.content-section h3 {
  font-size: 1.25rem;
  color: #2B4C7C;
  margin-bottom: 0.75rem;
}

.content-section p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #555;
}

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

.value-item {
  background-color: #F5F3F0;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #D4A574;
}

.value-item h3 {
  color: #2B4C7C;
  margin-bottom: 1rem;
}

.empty-content {
  text-align: center;
  padding: 3rem;
  color: #888;
  font-style: italic;
}

/* Mission section with image */
.mission-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mission-image .image-placeholder,
.services-image .image-placeholder {
  height: 250px;
  background-color: #F5F3F0;
  border: 2px dashed #D4A574;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
}

/* Services section with image */
.services-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

/* Value icons */
.value-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 30px;
  height: 30px;
}

/* Header link styles for auxiliary pages */
.brand-name a {
  color: inherit;
  text-decoration: none;
}

.brand-name a:hover {
  color: #1f3a5f;
}

.logo-section a {
  display: block;
}

/* Responsive design for auxiliary pages */
@media (max-width: 768px) {
  .main-content {
    padding: 1rem 0;
  }
  
  .page-header {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .content-section {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 1.5rem;
  }
  
  .mission-content,
  .services-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-image .image-placeholder,
  .services-image .image-placeholder {
    height: 200px;
  }
  
  .page-title {
    font-size: 1.75rem;
  }
  
  .content-section h2 {
    font-size: 1.25rem;
  }
  
  .value-item {
    padding: 1rem;
  }
}