/* SEO 텍스트 섹션 스타일 */
.seo-text {
  padding: 30px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.seo-text h2 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.seo-text h3 {
  color: #444;
  font-size: 1.4rem;
  margin: 25px 0 10px;
  font-weight: 500;
}

.seo-text p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

.keyword-container {
  display: none;
}

/* 모바일 반응형 - 모바일 SEO 최적화 */
@media (max-width: 768px) {
  .seo-text {
    padding: 20px 0;
  }
  
  .seo-text h2 {
    font-size: 1.5rem;
  }
  
  .seo-text h3 {
    font-size: 1.2rem;
  }
}