/* ==========================================================================
   Education Page Components
   ========================================================================== */

/* Page Banner */
.education-banner {
  background-color: var(--bright-teal);
  color: var(--text-light);
  text-align: center;
  padding: var(--spacing-xl) 0;
}

/* Feature Boxes */
.education-feature {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.education-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.education-feature__icon {
  font-size: 2.5rem;
  color: var(--bright-teal);
  margin-bottom: var(--spacing-md);
}

/* Section Specific Styles */
.sustainable-section {
  background-color: var(--pale-teal);
}

.frozen-section {
  background-color: var(--white);
}

.ecology-section {
  background-color: var(--dark-teal);
  color: var(--text-light);
}

.traceability-section {
  background-color: var(--background-light);
}

.education-programs-section {
  background-color: var(--sand);
}

/* Content Boxes */
.content-box {
  background-color: var(--white);
  border-radius: 8px;
  padding: var(--spacing-lg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Practice Items */
.practice-item {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}

.practice-item h4 {
  color: var(--bright-teal);
  margin-bottom: var(--spacing-xs);
}

/* Process Steps */
.process-step {
  display: flex;
  margin-bottom: var(--spacing-lg);
  align-items: flex-start;
}

.step-number {
  background-color: var(--bright-teal);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
  font-weight: bold;
}

/* Ecology Pillars */
.ecology-pillar {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.ecology-pillar h4 {
  color: var(--gold);
  margin-bottom: var(--spacing-xs);
}

/* Traceability Features */
.traceability-feature {
  margin-bottom: var(--spacing-lg);
}

.traceability-feature h4 {
  color: var(--medium-teal);
  margin-bottom: var(--spacing-xs);
}

.traceability-feature i {
  margin-right: var(--spacing-xs);
  color: var(--bright-teal);
}

/* Image Styling */
.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Rustic Accents */
.rustic-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid var(--wood);
  z-index: 1;
}

.rustic-accent.top-left {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.rustic-accent.bottom-right {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}
