.reading-guide-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.reading-guide-content h1 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #12213F;
}

.intro-section,
.guide-section {
  margin-bottom: 40px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.guide-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #385898;
  border-bottom: 3px solid #385898;
  padding-bottom: 10px;
}

.step {
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 3px solid #6C88C0;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #12213F;
}

.step p,
.guide-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.step ul,
.guide-section ul {
  margin-left: 24px;
  line-height: 1.8;
}

.step ul li,
.guide-section ul li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

.tips {
  background: linear-gradient(135deg, #6C88C0 0%, #5a75ad 100%);
  color: #2c4f8f;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #385898;
}

.tips h2 {
  color: #12213F;
  border-bottom: 3px solid #12213F;
}

.tips ul li {
  color: #12213F;
}

.cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #385898;
  border-bottom: none;
  padding-bottom: 0;
}

.cta-button {
  display: inline-block;
  padding: 12px 26px;
  margin: 10px;
  background: #385898;
  color: #F7F7F7;
  text-decoration: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(56, 88, 152, 0.3);
}

.cta-button:hover {
  background: #2d4777;
  box-shadow: 0 0 25px rgba(56, 88, 152, 0.5);
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: #6C88C0;
  box-shadow: 0 4px 12px rgba(108, 136, 192, 0.3);
}

.cta-button.secondary:hover {
  background: #5a75ad;
  box-shadow: 0 0 25px rgba(108, 136, 192, 0.5);
}

@media (max-width: 768px) {
  .reading-guide-content {
    padding: 0;
  }

  .reading-guide-content h1 {
    font-size: 32px;
  }

  .guide-section h2 {
    font-size: 26px;
  }

  .step h3 {
    font-size: 20px;
  }

  .intro-section,
  .guide-section {
    padding: 15px;
  }

  .cta-button {
    font-size: 14px;
    padding: 10px 18px;
  }
}