/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background-color: #faf9f6;
  color: #2d3748;
  line-height: 1.6;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  padding: 80px 0;
}
h1, h2, h3 {
  margin-bottom: 20px;
  color: #2b6cb0;
}
h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 2rem;
}
p {
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.text-center {
  text-align: center;
}
.subtitle {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #4a5568;
}
.btn {
  display: inline-block;
  background: #38a169;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s;
}
.btn:hover {
  background: #2f855a;
}
.cta-btn {
  background: white;
  color: #2b6cb0;
}
.bg-light {
  background-color: #f8fafc;
}
.hero {
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('images/hero-bg.jpg') center/cover no-repeat;
  text-align: center;
  padding: 120px 0;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 25px;
  margin-top: 40px;
}
.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  max-width: 300px;
  text-align: center;
}
.card h3 {
  font-size: 1.25rem;
  margin-top: 15px;
}
.modules {
  list-style: none;
  max-width: 700px;
  margin: 30px auto;
}
.modules li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.highlight {
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
  color: #2b6cb0;
}
.speaker-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #e2e8f0;
}
.pricing {
  background: #edf2f7;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  margin: 40px auto;
}
.price {
  font-size: 2.2rem;
  font-weight: bold;
  color: #2b6cb0;
  margin: 20px 0;
}
.cta {
  background: linear-gradient(to right, #2b6cb0, #38a169);
  color: white;
  text-align: center;
  padding: 90px 0;
}
.cta h2 {
  color: white;
  font-size: 2rem;
}
footer {
  background: #2d3748;
  color: white;
  text-align: center;
  padding: 30px 0;
}
footer a {
  color: #68d391;
  text-decoration: none;
}
@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .features { flex-direction: column; align-items: center; }
  .btn { padding: 12px 24px; font-size: 1rem; }
}