/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
}

:root {
  --primary-color: #006555; /* 深绿色作为主色调 */
  --primary-dark: #004d40; /* 深绿色暗色调 */
  --secondary-color: #ff8c00; /* 橙色作为辅助色 */
  --accent-color: #d32f2f; /* 红色强调色 */
  --light-color: #f8f9fa;
  --dark-color: #202124;
  --gray-color: #70757a;
  --success-color: #2e7d32;
  --light-green: #e8f5e9;
}

body {
  color: var(--dark-color);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 导航菜单修复 */
.navbar {
  background-color: var(--primary-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo, .logo {
  display: inline-flex;
  align-items: center;
}

.navbar-logo img, .logo img {
  height: 40px;
}

/* 导航菜单样式 */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s;
  opacity: 1 !important; /* 确保默认可见 */
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav-link:visited {
  color: white !important; /* 保持与普通链接相同的颜色 */
}

.nav-link:hover:visited {
  color: rgba(255, 255, 255, 0.8) !important; /* 保持与hover状态相同的颜色 */
}

.dropdown {
  position: relative;
  margin: 0 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: white;
  border-radius: 4px;
  padding: 8px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
  list-style: none !important;
  padding-left: 0 !important;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  color: var(--dark-color);
  padding: 8px 15px;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

.dropdown-menu a:visited {
  color: var(--dark-color) !important;
}

.dropdown-menu a:hover:visited {
  color: var(--primary-color) !important;
}

.nav-actions {
  margin-left: 15px;
}

/* 汉堡菜单样式 */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: white;
  transition: all 0.3s;
}

/* 英雄区域 */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: white !important;
  border: none;
  border-radius: 4px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  text-decoration: none;
  margin: 5px;
  box-shadow: 0 2px 5px rgba(0, 101, 85, 0.3);
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  color: white !important;
  text-decoration: none;
}

.btn-secondary {
  background-color: #6c757d;
}

.btn-secondary:hover {
  background-color: #5a6268;
  color: white !important;
}

/* 取消局部样式对全局按钮的影响 */
.application-section .btn,
.form-step .btn,
#termsAgreementStep .btn {
  display: inline-block;
  margin: 5px;
}

/* 确保页脚下的按钮不受局部样式影响 */
.footer .btn, 
.hero-buttons .btn,
.cta-buttons .btn,
.contact-cta .btn {
  background-color: var(--primary-color);
  color: white !important;
}

.footer .btn:hover, 
.hero-buttons .btn:hover,
.cta-buttons .btn:hover,
.contact-cta .btn:hover {
  background-color: var(--primary-dark);
}

.footer .btn-secondary, 
.hero-buttons .btn-secondary,
.cta-buttons .btn-secondary,
.contact-cta .btn-secondary {
  background-color: #6c757d;
}

.footer .btn-secondary:hover, 
.hero-buttons .btn-secondary:hover,
.cta-buttons .btn-secondary:hover,
.contact-cta .btn-secondary:hover {
  background-color: #5a6268;
}

/* 特色区域 */
.features {
  padding: 80px 0;
  background-color: var(--light-color);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

/* 流程区域 */
.process {
  padding: 80px 0;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.step {
  flex: 0 0 calc(20% - 20px);
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--gray-color);
}

/* 关于我们 */
.about {
  padding: 80px 0;
  background-color: var(--light-color);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 0 0 40%;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

.about-text {
  flex: 0 0 60%;
}

.about-text h2 {
  margin-bottom: 20px;
}

/* 联系区域 */
.contact {
  padding: 80px 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* 页脚 */
.footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 表单样式 */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-right: 10px;
}

.form-submit {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-submit:hover {
  background-color: #3367d6;
}

/* 修复复选框对齐问题 */
.form-group label input[type="checkbox"],
.terms-agreement input[type="checkbox"],
input[type="checkbox"] + label {
  vertical-align: middle;
  margin-right: 8px;
}

/* 创建更好的复选框容器 */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-container input[type="checkbox"] {
  margin-top: 4px; /* 与文本第一行对齐 */
  margin-right: 10px;
  flex-shrink: 0;
}

.checkbox-container label {
  flex-grow: 1;
  margin-bottom: 0;
}

/* 响应式样式 */
@media (max-width: 992px) {
  .step {
    flex: 0 0 calc(33.333% - 20px);
    margin-bottom: 30px;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image, .about-text {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .hamburger.active span:nth-child(1), 
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2), 
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3), 
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background-color: var(--primary-color);
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
  }
  
  .nav-actions {
    margin-top: 20px;
  }
  
  .step {
    flex: 0 0 calc(50% - 20px);
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  /* 确保所有列表项在移动端正确显示 */
  ul, ol {
    padding-left: 20px;
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-bottom: 8px;
  }
  
  /* 确保FAQ和其他内容区域不会溢出 */
  .faq-answer, .privacy-content, .terms-content, .fees-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
  }
  
  /* 表格响应式处理 */
  .fee-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }
  
  /* 表单和输入框响应式调整 */
  .form-group {
    margin-bottom: 15px;
  }
  
  input, select, textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 576px) {
  .step {
    flex: 0 0 100%;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 30px 20px;
  }
}

/* 统一页脚链接样式 */
.footer a,
.footer a:visited,
.footer-legal a,
.footer-legal a:visited {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover,
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

/* 特别针对页脚底部法律链接 */
.footer-bottom .footer-legal a,
.footer-bottom .footer-legal a:visited {
  color: #fff;
  font-weight: 400;
}

.footer-bottom .footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* 确保其他链接颜色一致性 */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--primary-dark);
}

/* 重置已访问链接的颜色 */
a:visited {
  color: var(--primary-color);
}

/* 针对内容区域里特定链接颜色控制 */
.content-area a:visited {
  color: var(--primary-color);
}

/* 转化率优化相关样式 */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.badge {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--dark-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.badge i {
  color: var(--primary-color);
}

/* 见证部分样式 */
.testimonials {
  background-color: var(--light-color);
  padding: 80px 0;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  flex: 1;
  min-width: 300px;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 50px;
  color: rgba(66, 133, 244, 0.1);
  position: absolute;
  top: -20px;
  left: -15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-author p {
  margin: 0;
  color: var(--gray-color);
  font-size: 0.9rem;
}

/* 表单转化优化样式 */
.benefits-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 5px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.benefit-item i {
  color: var(--secondary-color);
}

.form-sidebar {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.form-testimonial {
  background-color: white;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.form-testimonial .quote {
  font-style: italic;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

.form-testimonial .quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.form-testimonial .author {
  text-align: right;
  color: var(--gray-color);
  font-size: 0.9rem;
}

.guarantees h4 {
  margin-top: 0;
  margin-bottom: 15px;
}

.guarantees ul {
  padding-left: 5px;
  list-style: none;
}

.guarantees li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guarantees li i {
  color: var(--primary-color);
}

/* 家教收益样式 */
.tutor-benefits {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.benefit-card {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.benefit-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.benefit-card h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.benefit-card p {
  margin: 0;
  color: var(--gray-color);
}

.tutor-success-stories {
  margin: 40px 0;
}

.story-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.story-card {
  display: flex;
  gap: 20px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 300px;
}

.story-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.story-content h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.story-content p {
  margin: 0;
  font-style: italic;
}

/* 新增CTA主按钮样式 */
.btn-cta {
  background-color: var(--secondary-color);
  color: white !important;
  font-weight: 600;
  padding: 12px 24px;
  box-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
}

.btn-cta:hover {
  background-color: #e67e00;
  transform: translateY(-2px);
}

/* 为透明logo创建特殊背景 */
.logo-container {
  display: inline-flex;
  align-items: center;
  padding: 5px;
  border-radius: 5px;
  background-color: var(--primary-color);
}

.logo-container img {
  height: 40px;
}

/* 增强表单转化率的样式 */
.form-header {
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
  border-radius: 8px 8px 0 0;
  text-align: center;
}

.form-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.form-header p {
  margin: 10px 0 0;
  opacity: 0.9;
}

/* 增强表单样式 */
.form-container {
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-control {
  border: 1px solid #ddd;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 101, 85, 0.1);
}

.form-submit {
  background-color: var(--secondary-color);
  font-weight: 700;
  padding: 14px 30px;
  box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
  transition: background-color 0.3s, transform 0.2s;
}

.form-submit:hover {
  background-color: #e67e00;
  transform: translateY(-2px);
}

/* 修复复选框问题 */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-container input[type="checkbox"] {
  margin-top: 4px;
  margin-right: 10px;
  flex-shrink: 0;
}

.checkbox-container label {
  flex-grow: 1;
  margin-bottom: 0;
}

/* 创建一致的子页面标题组件 */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 50px 0;
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  margin: 0 0 15px;
  font-size: 2.2rem;
}

.page-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* 响应式导航菜单 */
@media (max-width: 991px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    overflow-y: auto;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
  }
  
  .dropdown {
    width: 100%;
    margin: 0;
  }
  
  .nav-link {
    width: 100%;
    padding: 12px 20px;
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    max-height: 500px !important;
    padding: 0 0 0 20px !important;
    transition: max-height 0.3s;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 500px;
  }
  
  .nav-actions {
    margin: 15px auto;
    width: 90%;
  }
  
  .nav-actions .btn {
    width: 100%;
    display: block;
    text-align: center;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .dropdown .nav-link {
    pointer-events: none;
  }
  
  .dropdown-menu a {
    padding: 10px 0;
  }
}

/* 确保桌面版菜单始终可见 */
@media (min-width: 992px) {
  .nav-menu {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .nav-link {
    opacity: 1 !important;
  }
}

/* 响应式调整 */
@media (max-width: 768px) {
  .form-testimonial {
    margin: 20px 10px;
    padding: 20px 25px;
  }
  
  .form-testimonial .quote {
    padding-left: 20px;
  }
  
  .form-testimonial .quote::before {
    font-size: 2.5rem;
    top: -8px;
  }
}

/* 修复成功家教故事部分的边距 */
.success-stories {
  padding: 40px 30px; /* 增加左右内边距 */
  margin: 0 15px; /* 增加左右外边距 */
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.success-story {
  margin-bottom: 30px;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.success-story:last-child {
  border-bottom: none;
}

.story-quote {
  font-style: italic;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

.story-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.story-author {
  text-align: right;
  color: var(--gray-color);
  font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .success-stories {
    padding: 20px 15px;
    margin: 0 10px;
  }
  
  .story-quote {
    padding-left: 20px;
  }
  
  .story-quote::before {
    font-size: 2.5rem;
    top: -8px;
  }
} 