/* Practical Guide Section */
.practical-guide {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
  padding: 60px 0;
  margin: 40px 0;
}

.practical-guide .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.guide-header {
  text-align: center;
  margin-bottom: 50px;
}

.guide-header h2 {
  font-size: 1.5rem;
  color: #2c5530;
  margin-bottom: 15px;
  font-weight: 700;
}

.guide-subtitle {
  font-size: 1.2rem;
  color: #5a7c5a;
  margin: 0;
  font-style: italic;
}

/* Guide Sections */
.guide-section {
  margin-bottom: 50px;
  background: white;
  border-radius: 15px;
  padding: 40px;
  color:black;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.guide-section h3 {
  font-size: 1.8rem;
  color: #2c5530;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-section h3 .emoji {
  font-size: 2rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  background: #f9fffe;
  border: 2px solid #e1f2e1;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 85, 48, 0.15);
  border-color: #4a9c4a;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 1.3rem;
  color: black;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  color: #5a7c5a;
  line-height: 1.6;
  margin-bottom: 15px;
}

.feature-card p strong {
  color: #2c5530;
  font-weight: 600;
}

/* Feature Stats */
.feature-stats {
  margin-top: 15px;
}

.stat-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-badge.success {
  background: #d4edda;
  color: #155724;
}

.stat-badge.premium {
  background: #fff3cd;
  color: #856404;
}

.stat-badge.nice-to-have {
  background: #d1ecf1;
  color: #0c5460;
}

/* Experience Cards */
.experience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.experience-card {
  background: white;
  border: 2px solid #e1f2e1;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  transition: all 0.3s ease;
}

.experience-card.featured {
  border-color: #4a9c4a;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fff0 100%);
}

.experience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 85, 48, 0.12);
}

.experience-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.location-badge, .date-badge {
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.location-badge {
  background: #4a9c4a;
  color: white;
}

.date-badge {
  background: #e1f2e1;
  color: #2c5530;
}

.experience-card h4 {
  font-size: 1.4rem;
  color: #2c5530;
  margin-bottom: 15px;
  font-weight: 600;
}

.experience-card p {
  color: #5a7c5a;
  line-height: 1.7;
  margin-bottom: 20px;
}

.experience-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating {
  font-size: 1.1rem;
}

.rating-text {
  font-size: 0.9rem;
  color: #4a9c4a;
  font-weight: 600;
}

/* Checklist */
.checklist-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px;
  background: #f9fffe;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.checklist-item:hover {
  background: #f0fff0;
}

.checklist-item input[type="checkbox"] {
  margin-top: 2px;
  transform: scale(1.2);
  accent-color: #4a9c4a;
}

.checklist-item label {
  color: #2c5530;
  font-weight: 500;
  line-height: 1.5;
  cursor: default;
}

.checklist-note {
  margin-top: 25px;
  padding: 20px;
  background: #e8f5f3;
  border-left: 4px solid #4a9c4a;
  border-radius: 6px;
  color: black;
  font-weight: 500;
}

/* Season Tips */
.season-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.season-card {
  padding: 25px;
  border-radius: 12px;
  border: 2px solid transparent;
}

.season-card.winter {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border-color: #87ceeb;
}

.season-card.summer {
  background: linear-gradient(135deg, #fff8dc 0%, #ffeaa7 100%);
  border-color: #f39c12;
}

.season-card h4 {
  font-size: 1.3rem;
  color: #2c5530;
  margin-bottom: 15px;
  font-weight: 600;
}

.season-card ul {
  list-style: none;
  padding: 0;
}

.season-card li {
  padding: 8px 0;
  color: black;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.season-card li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4a9c4a;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .practical-guide {
    padding: 40px 0;
  }
  
  .guide-header h2 {
    font-size: 1.5rem;
  }
  
  .guide-section {
    padding: 25px 20px;
    color:black;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .experience-cards {
    grid-template-columns: 1fr;
  }
  
  .checklist-container {
    grid-template-columns: 1fr;
  }
  
  .season-tips {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .practical-guide .container {
    padding: 0 15px;
  }
  
  .guide-section {
    padding: 20px 15px;
  }
  
  .guide-header h2 {
    font-size: 1.5rem;
  }
  
  .guide-section h3 {
    font-size: 1.5rem;
  }
  
  .experience-header {
    flex-direction: column;
    gap: 8px;
  }
}
  .uitleg-section {
    color: black;
    background-color: var(--sand-bg);
    padding: 40px 0;

    /* Missing styles that should be added: */
    position: relative;
    width: 100%;
    margin: 0 auto;
  }

  .uitleg-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .uitleg-section h2 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
  }

  .uitleg-section h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .uitleg-section p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .uitleg-section .advice-box {
    background: #f9fffe;
    border: 2px solid #e1f2e1;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid #4a9c4a;
  }

  .uitleg-section .advice-box p {
    margin-bottom: 15px;
  }

  .uitleg-section .advice-box p:last-child {
    margin-bottom: 0;
  }

  .uitleg-section .highlight {
    background-color: #fff3cd;
    padding: 2px 6px;
    border-radius: 4px;
    color: #856404;
    font-weight: 600;
  }

  /* Responsive design */
  @media (max-width: 768px) {
    .uitleg-section {
      padding: 30px 0;
    }

    .uitleg-section .container {
      padding: 0 15px;
    }

    .uitleg-section h2 {
      font-size: 1.5rem;
    }

    .uitleg-section h3 {
      font-size: 1.4rem;
    }

    .uitleg-section .advice-box {
      padding: 20px 15px;
    }
  }

  @media (max-width: 480px) {
    .uitleg-section h2 {
      font-size: 1.5rem;
    }

    .uitleg-section h3 {
      font-size: 1.3rem;
    }

    .uitleg-section .advice-box {
      padding: 15px;
    }
  }