.page-header {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.intro-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.lead-answer {
  font-size: 1.2rem;
  line-height: 1.8;
  padding: 1.5rem;
  background: white;
  border-left: 4px solid #27ae60;
  border-radius: 0 10px 10px 0;
  margin-bottom: 1rem;
}

.seasonal-overview {
  padding: 4rem 0;
}

h2 {
  text-align: center;
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.season-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.season-header {
  padding: 1.5rem;
  color: white;
  text-align: center;
}

.spring .season-header { background: linear-gradient(135deg, #a8e063, #56ab2f); }
.summer .season-header { background: linear-gradient(135deg, #f7971e, #ffd200); }
.fall .season-header { background: linear-gradient(135deg, #e65c00, #f9d423); }
.winter .season-header { background: linear-gradient(135deg, #4ca1af, #2c3e50); }

.season-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.months {
  font-size: 0.9rem;
  opacity: 0.9;
}

.season-content {
  padding: 1.5rem;
}

.rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.status {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status.peak { background: #27ae60; color: white; }
.status.excellent { background: #2ecc71; color: white; }
.status.good { background: #3498db; color: white; }
.status.limited { background: #f39c12; color: white; }
.status.not-recommended { background: #e74c3c; color: white; }

.temps {
  color: #666;
  font-size: 0.9rem;
  margin: 1rem 0 0.5rem;
}

.notes {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.exterior-details, .interior-details {
  padding: 4rem 0;
}

.exterior-details {
  background: #f8f9fa;
}

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

.content-box {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-box.warning {
  border-top: 4px solid #e74c3c;
}

.content-box h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.check-list, .warning-list {
  list-style: none;
  padding: 0;
}

.check-list li::before {
  content: "✓ ";
  color: #27ae60;
  font-weight: bold;
}

.warning-list li::before {
  content: "✗ ";
  color: #e74c3c;
  font-weight: bold;
}

.check-list li, .warning-list li {
  padding: 0.5rem 0;
  color: #666;
}

.month-breakdown h3 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.month-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.month-card h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.rating-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.rating-badge.excellent { background: #27ae60; color: white; }
.rating-badge.good { background: #3498db; color: white; }
.rating-badge.fair { background: #f39c12; color: white; }

.month-card p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
}

.interior-content .intro-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #666;
}

.interior-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.interior-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.interior-card h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.interior-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.interior-card li {
  padding: 0.4rem 0;
  color: #666;
  padding-left: 1.5rem;
  position: relative;
}

.interior-card li::before {
  content: "•";
  color: #3498db;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.altitude-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.altitude-section h2 {
  color: white;
}

.altitude-content .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.altitude-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.altitude-card {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.altitude-card h3 {
  margin-bottom: 1rem;
}

.altitude-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.altitude-card li {
  padding: 0.4rem 0;
  opacity: 0.9;
}

.planning-section {
  padding: 4rem 0;
}

.timeline {
  max-width: 600px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.timeline-content {
  padding-top: 0.5rem;
}

.timeline-content h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
}

.cta-section {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-button {
  background: white;
  color: #e74c3c;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-button-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border: 2px solid white;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-button-secondary:hover {
  background: white;
  color: #e74c3c;
}

.note {
  margin-top: 1rem;
  opacity: 0.9;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.8rem;
  }

  .season-grid, .interior-grid, .altitude-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
