.page-header {
  background: linear-gradient(135deg, #8B7355 0%, #d4b483 100%);
  padding: 80px 40px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
}

.page-header h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.page-header p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.prices-table-section {
  margin-bottom: 60px;
  background: #f9f9f9;
  border-radius: 20px;
  padding: 40px;
  overflow-x: auto;
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  min-width: 500px;
}

.prices-table th {
  background: #8B7355;
  color: white;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.prices-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.prices-table tr:hover {
  background: #fafafa;
}

.prices-table td:last-child {
  font-weight: 600;
  color: #8B7355;
}

.price-note {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
}

.note-content p {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.btn-primary {
  display: inline-block;
  background: #8B7355;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.btn-primary:hover {
  background: #d4b483;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 20px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .prices-table-section {
    padding: 20px;
  }
  
  .prices-table th,
  .prices-table td {
    padding: 12px 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 40px 15px;
  }
  
  .prices-table th,
  .prices-table td {
    padding: 10px 12px;
    font-size: 12px;
  }
}