/* style.css */
/* 기본 스타일 및 데스크톱 스타일 */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f6fa;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
  
  header {
    background: #2d98da;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  header h1 {
    margin: 0;
    font-size: 24px;
  }
  
  header h1 a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  header h1 a:hover {
    opacity: 0.8;
  }
  
  nav a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .container {
    display: flex;
    margin: 20px;
    margin-top: 100px;
  }
  
  aside {
    width: 220px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }
  
  aside ul {
    list-style: none;
    padding: 0;
  }
  
  aside ul li {
    margin: 10px 0;
  }
  
  aside ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  aside ul li a.active,
  aside ul li a:hover {
    color: #2d98da;
    font-weight: bold;
  }
  
  main {
    flex-grow: 1;
    margin-left: 20px;
  }
  
  .cta-box {
    background: #fff;
    padding: 20px;
    border: 2px solid #2d98da;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .cta-box input {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 15px;
  }
  
  .cta-box button {
    padding: 12px;
    width: 100%;
    background-color: #2d98da;
    color: #fff;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .section h2 {
    color: #2d98da;
  }
  
  /* 카드 아이콘 스타일 */
  .card-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
  }
  
  /* 카드 컨테이너 스타일 */
  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
  }
  
  .card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card h3 {
    color: #2d98da;
    margin: 15px 0;
  }
  
  .card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* 버튼 스타일 */
  .btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn.primary {
    background: #2d98da;
    color: #fff;
  }
  
  .btn.secondary {
    background: #f1f2f6;
    color: #333;
    border: 1px solid #ddd;
  }
  
  .btn.small {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  /* 히어로 섹션 */
  /* 상단 CTA 섹션 */
  .top-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  
  .cta-content {
    flex: 1;
    color: #fff;
  }
  
  .cta-content h3 {
    font-size: 1.8em;
    margin: 0 0 10px 0;
    color: #fff;
  }
  
  .cta-content p {
    font-size: 1.1em;
    margin: 0 0 20px 0;
    opacity: 0.9;
  }
  
  .cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .cta-actions .btn {
    padding: 12px 24px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .cta-actions .btn.primary {
    background: #fff;
    color: #667eea;
  }
  
  .cta-actions .btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
  }
  
  .cta-actions .btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
  }
  
  .cta-actions .btn.secondary:hover {
    background: #fff;
    color: #667eea;
    transform: translateY(-2px);
  }
  
  .cta-image {
    flex: 0 0 200px;
  }
  
  .cta-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  
  .hero {
    background: linear-gradient(135deg, #2d98da, #1e88e5);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
  }
  
  .hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* 피처드 섹션 */
  .featured-sections {
    padding: 40px 20px;
  }
  
  .featured-sections h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
  }
  
  /* 비교 프리뷰 섹션 */
  .comparison-preview {
    background: #f8f9fa;
    padding: 40px 20px;
    margin: 40px 0;
  }
  
  .comparison-preview h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
  }
  
  .comparison-preview p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #666;
  }
  
  .table-container {
    overflow-x: auto;
    margin: 30px 0;
  }
  
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  
  .comparison-table th {
    background: #2d98da;
    color: #fff;
    font-weight: 600;
  }
  
  .comparison-table tbody tr:hover {
    background: #f8f9fa;
  }
  
  /* FAQ 프리뷰 */
  .faq-preview {
    padding: 40px 20px;
  }
  
  .faq-preview h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
  }
  
  .faq-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 30px;
  }
  
  .faq-list li {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .faq-list li strong {
    color: #2d98da;
  }
  
  .faq-list li span {
    color: #666;
    display: block;
    margin-top: 10px;
  }
  
  /* 상세 콘텐츠 스타일 */
  .detailed-content {
    padding: 40px 20px;
    background: #fff;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .detailed-content h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #2d98da;
  }
  
  .content-intro {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
  }
  
  .intro-image {
    flex: 0 0 400px;
  }
  
  .intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .intro-text p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #333;
  }
  
  .content-section {
    margin-bottom: 50px;
  }
  
  .content-section h3 {
    color: #2d98da;
    font-size: 1.8em;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f2f6;
    padding-bottom: 10px;
  }
  
  .content-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
  }
  
  .info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2d98da;
    margin: 20px 0;
  }
  
  .info-box h4 {
    color: #2d98da;
    margin-top: 0;
    margin-bottom: 15px;
  }
  
  .info-box ul {
    margin: 0;
    padding-left: 20px;
  }
  
  .info-box li {
    margin-bottom: 10px;
    line-height: 1.6;
  }
  
  .reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
  }
  
  .reason-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .reason-item:hover {
    transform: translateY(-5px);
  }
  
  .reason-icon {
    font-size: 48px;
    margin-bottom: 15px;
  }
  
  .reason-item h4 {
    color: #2d98da;
    margin-bottom: 15px;
  }
  
  .reason-item p {
    color: #666;
    line-height: 1.6;
  }
  
  .insurance-types-detailed {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .type-detail {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
  }
  
  .type-detail h4 {
    color: #2d98da;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3em;
  }
  
  .type-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  
  .type-image {
    flex: 0 0 200px;
  }
  
  .type-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .type-text p {
    margin-bottom: 10px;
    line-height: 1.6;
  }
  
  .consideration-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .consideration-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .consideration-item h4 {
    color: #2d98da;
    margin-top: 0;
    margin-bottom: 15px;
  }
  
  .consideration-item p {
    color: #666;
    line-height: 1.6;
  }
  
  .comparison-table-detailed {
    overflow-x: auto;
    margin: 20px 0;
  }
  
  .comparison-table-detailed table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .comparison-table-detailed th,
  .comparison-table-detailed td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  
  .comparison-table-detailed th {
    background: #2d98da;
    color: #fff;
    font-weight: 600;
  }
  
  .comparison-table-detailed tbody tr:hover {
    background: #f8f9fa;
  }
  
  .warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
  }
  
  .warning-box h4 {
    color: #856404;
    margin-top: 0;
    margin-bottom: 15px;
  }
  
  .warning-box ul {
    color: #856404;
    margin: 0;
    padding-left: 20px;
  }
  
  .warning-box li {
    margin-bottom: 10px;
    line-height: 1.6;
  }
  
  .claim-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
  }
  
  .process-step {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
  }
  
  .step-number {
    background: #2d98da;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
  }
  
  .process-step h4 {
    color: #2d98da;
    margin-bottom: 15px;
  }
  
  .process-step p {
    color: #666;
    line-height: 1.6;
  }
  
  .checklist {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
  }
  
  .checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .checklist-item input[type="checkbox"] {
    margin-right: 15px;
    transform: scale(1.2);
  }
  
  .checklist-item label {
    color: #333;
    font-weight: 500;
    cursor: pointer;
  }
  
  /* 영상 참고 섹션 */
  .video-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .video-intro {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .video-intro p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .video-wrapper iframe {
    border-radius: 12px;
  }
  
  .video-description {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
  }
  
  .video-description h3 {
    color: #2d98da;
    margin-bottom: 10px;
  }
  
  .video-description p {
    color: #666;
    line-height: 1.6;
  }
  
  /* 광고 링크 섹션 스타일 */
  .ad-links-section {
    background: #f8f9fa;
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 8px;
  }
  
  .ad-links-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
  }
  
  .ad-links-section > p {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
  }
  
  .ad-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .ad-link-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .ad-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }
  
  .ad-link-icon {
    font-size: 48px;
    margin-bottom: 15px;
  }
  
  .ad-link-item h3 {
    color: #2d98da;
    margin-bottom: 15px;
    font-size: 1.3em;
  }
  
  .ad-link-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .ad-btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .ad-btn:hover {
    background: #218838;
    transform: translateY(-2px);
  }
  
  .ad-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
  }
  
  .ad-disclaimer p {
    color: #856404;
    margin: 0;
    font-size: 0.9em;
  }
  
  /* 반응형 디자인 */
  @media screen and (max-width: 768px) {
    .container {
      flex-direction: column;
      margin: 10px;
      margin-top: 80px;
    }
    
    aside {
      width: 100%;
      position: static;
      margin-bottom: 20px;
      max-height: none;
    }
    
    main {
      margin-left: 0;
    }
    
    header {
      padding: 15px;
    }
    
    header h1 {
      font-size: 20px;
    }
    
    nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    
    nav a {
      font-size: 14px;
      padding: 5px 8px;
    }
    
    .content-intro {
      flex-direction: column;
    }
    
    .intro-image {
      flex: none;
      margin-bottom: 20px;
    }
    
    .type-content {
      flex-direction: column;
    }
    
    .type-image {
      flex: none;
      margin-bottom: 15px;
    }
    
    .detailed-content h2 {
      font-size: 1.8em;
    }
    
    .content-section h3 {
      font-size: 1.4em;
    }
    
    .video-wrapper {
      margin-bottom: 20px;
    }
    
    .video-wrapper iframe,
    .video-wrapper video {
      height: 250px;
      width: 100%;
    }
    
    .ad-links-grid {
      grid-template-columns: 1fr;
    }
    
    .ad-links-section h2 {
      font-size: 1.5em;
    }
    
    .card-container {
      grid-template-columns: 1fr;
    }
    
    .reason-grid {
      grid-template-columns: 1fr;
    }
    
    .consideration-list {
      grid-template-columns: 1fr;
    }
    
    .claim-process {
      grid-template-columns: 1fr;
    }
    
    .section {
      padding: 15px;
      margin-bottom: 15px;
    }
    
    .hero {
      padding: 40px 15px;
      margin-top: 10px;
    }
    
    .hero h2 {
      font-size: 1.8em;
    }
    
    .hero p {
      font-size: 1em;
    }
    
    .cta-buttons {
      flex-direction: column;
      gap: 10px;
    }
    
    .cta-buttons .btn {
      width: 100%;
      text-align: center;
    }
    
    .top-cta-section {
      padding: 20px 15px;
    }
    
    .cta-banner {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
    
    .cta-content h3 {
      font-size: 1.5em;
    }
    
    .cta-content p {
      font-size: 1em;
    }
    
    .cta-actions {
      justify-content: center;
    }
    
    .cta-image {
      flex: 0 0 150px;
    }
  }
  
  footer {
    background: #f1f2f6;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #555;
  }
  
  /* 이미지 섹션 스타일 */
  .section-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .section-image {
    flex: 0 0 300px;
  }
  
  .section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  /* 문의 폼 스타일 */
  .contact-form {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
  }
  
  .contact-form h2 {
    margin-top: 0;
    color: #2d98da;
    border-bottom: 2px solid #f1f2f6;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
  }
  
  .form-group textarea {
    height: 100px;
    resize: vertical;
  }
  
  .form-group .checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
  }
  
  .form-group .checkbox-label input {
    width: auto;
    margin-right: 10px;
  }
  
  .submit-btn {
    background: #2d98da;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .submit-btn:hover {
    background: #2589c6;
  }
  
  /* 모바일 반응형 디자인 */
  @media screen and (max-width: 768px) {
    .container {
      flex-direction: column;
    }
    
    aside {
      width: 100%;
      margin-bottom: 20px;
    }
    
    main {
      margin-left: 0;
    }
    
    header {
      flex-direction: column;
      text-align: center;
    }
    
    nav {
      margin-top: 15px;
    }
    
    .section-content {
      flex-direction: column;
    }
    
    .section-image {
      flex: 0 0 100%;
      margin-bottom: 15px;
    }
  }
  
  /* 작은 모바일 화면 최적화 */
  @media screen and (max-width: 480px) {
    body {
      font-size: 14px;
    }
    
    header {
      padding: 10px;
    }
    
    header h1 {
      font-size: 16px;
    }
    
    nav {
      gap: 5px;
    }
    
    nav a {
      font-size: 12px;
      padding: 3px 6px;
    }
    
    .container {
      margin: 5px;
      margin-top: 70px;
    }
    
    .section {
      padding: 10px;
      margin-bottom: 10px;
    }
    
    .hero {
      padding: 30px 10px;
    }
    
    .hero h2 {
      font-size: 1.5em;
    }
    
    .hero p {
      font-size: 0.9em;
    }
    
    .card {
      padding: 15px;
    }
    
    .btn {
      padding: 8px 16px;
      font-size: 14px;
    }
    
    .video-wrapper iframe,
    .video-wrapper video {
      height: 200px;
    }
    
    .ad-link-item {
      padding: 15px;
    }
    
    .ad-link-item h3 {
      font-size: 1.1em;
    }
    
    .post-item {
      padding: 15px;
    }
    
    .post-header h3 {
      font-size: 1.1em;
    }
  }
  
  /* 후기 섹션 스타일 */
  .reviews-section {
    margin-bottom: 40px;
  }
  
  .reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .review-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .review-card:hover {
    transform: translateY(-5px);
  }
  
  .review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  .review-name {
    font-weight: bold;
  }
  
  .review-insurance {
    color: #2d98da;
    font-size: 0.9em;
  }
  
  .review-rating {
    color: #f39c12;
    font-size: 1.2em;
    margin-bottom: 5px;
  }
  
  .review-date {
    color: #777;
    font-size: 0.8em;
    margin-bottom: 10px;
  }
  
  .review-content {
    line-height: 1.6;
  }
  
  .write-review {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
  }
  
  .write-review h3 {
    margin-top: 0;
    color: #2d98da;
    margin-bottom: 20px;
  }
  
  .rating-select {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
  }
  
  .rating-select label {
    cursor: pointer;
  }
  
  .review-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .review-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  @media screen and (max-width: 768px) {
    .reviews-container {
      grid-template-columns: 1fr;
    }
  }
  
  /* 보험 상품 비교 테이블 스타일 */
  .insurance-comparison {
    margin-bottom: 40px;
  }
  
  .comparison-intro {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .comparison-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    background: #f5f6fa;
    padding: 15px;
    border-radius: 8px;
  }
  
  .comparison-filters label {
    margin-right: 5px;
    font-weight: 500;
  }
  
  .comparison-filters select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
  }
  
  .comparison-table-container {
    overflow-x: auto;
    margin-bottom: 20px;
  }
  
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
  }
  
  .comparison-table th {
    background: #2d98da;
    color: white;
    padding: 12px 15px;
    text-align: left;
    position: sticky;
    top: 0;
  }
  
  .comparison-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
  }
  
  .comparison-table tbody tr:hover {
    background-color: #f9f9f9;
  }
  
  .product-name {
    font-weight: bold;
    color: #2d98da;
  }
  
  .feature-list {
    padding-left: 20px;
    margin: 0;
  }
  
  .feature-list li {
    margin-bottom: 5px;
  }
  
  .product-rating {
    white-space: nowrap;
  }
  
  .stars {
    color: #f39c12;
    margin-right: 5px;
  }
  
  .rating-value {
    font-weight: bold;
  }
  
  .comparison-disclaimer {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9em;
    color: #555;
  }
  
  @media screen and (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
      padding: 8px 10px;
    }
    
    .comparison-filters {
      flex-direction: column;
      gap: 10px;
    }
  }
  