@import url('/base.css');

.page-container {
  flex: 1;
  background: linear-gradient(135deg, #f8f4ff 0%, #e8f4fd 50%, #fff 100%);
  padding: 80px 60px;
  min-height: 80vh;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-eyebrow {
  color: #ff9500;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #5a5a5a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-section {
  max-width: 1200px;
  margin: 60px auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.content-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 20px;
  margin-top: 30px;
}

.content-section p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 20px;
  padding-left: 30px;
}

.content-section li {
  margin-bottom: 10px;
}

.btn.gradient {
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.btn.gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
}

@media (max-width: 968px) {
  .page-container {
    padding: 60px 30px;
  }

  .content-section {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .page-container {
    padding: 40px 20px;
  }

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

  .content-section {
    padding: 25px;
  }
}

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