/* payment page modal estimate */
.payment-attention-button {
   background-color: #2a52be !important;
   color: white !important;
   border: none !important;
   animation: paymentButtonBlink 1.5s infinite !important;
   font-weight: 500 !important;
   padding: 8px 16px !important;
}

.payment-attention-button:hover {
   background-color: #2a52be !important;
}
.payments_of_modal {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   z-index: 1000;
}

.payments_of_modal-content {
   position: relative;
   background-color: #fff;
   margin: 100px auto;
   padding: 0;
   width: 90%;
   max-width: 500px;
   border-radius: 16px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payments_of_modal-header {
   padding: 24px;
   border-bottom: 1px solid #eee;
   text-align: center;
}

.payments_of_modal-header h2 {
   margin: 0;
   font-size: 1.3rem;
   font-weight: 600;
   color: #333;
}

.payments_of_close-button {
   position: absolute;
   right: 20px;
   top: 20px;
   background: none;
   border: none;
   font-size: 24px;
   cursor: pointer;
   color: #666;
}

.payments_of_modal-body {
   padding: 24px;
}

.payments_of_account-info {
   background-color: #f8f9fa;
   padding: 24px;
   border-radius: 12px;
   margin-bottom: 24px;
}

.payments_of_amount,
.payments_of_bank-info,
.payments_of_account-number,
.payments_of_account-holder {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.payments_of_label {
   color: #666;
   font-size: 0.95rem;
}

.payments_of_value {
   font-weight: 600;
   color: #333;
   font-size: 1rem;
}

.payments_of_amount .payments_of_value {
   color: #0064ff;
   font-size: 1.1rem;
}

.payments_of_number-container {
   display: flex;
   align-items: center;
   gap: 12px;
}

.payments_of_copy-button {
   background-color: #f2f4f6;
   border: none;
   padding: 6px 14px;
   border-radius: 6px;
   font-size: 0.9rem;
   color: #333;
   cursor: pointer;
   transition: all 0.2s ease;
}

.payments_of_copy-button:hover {
   background-color: #e9ecef;
}

.payments_of_notice-section {
   padding: 0;
}

.payments_of_notice-section h3 {
   font-size: 1.1rem;
   margin-bottom: 16px;
   color: #333;
}

.payments_of_notice-section ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.payments_of_notice-section li {
   position: relative;
   padding-left: 16px;
   margin-bottom: 12px;
   color: #666;
   font-size: 0.9rem;
   line-height: 1.6;
}

.payments_of_notice-section li::before {
   content: '•';
   position: absolute;
   left: 0;
   color: #0064ff;
}

.payments_of_modal-footer {
   padding: 20px;
   border-top: 1px solid #eee;
   text-align: center;
}

.payments_of_close-modal-button {
   background-color: #0064ff;
   color: white;
   border: none;
   padding: 14px 40px;
   border-radius: 8px;
   font-size: 1rem;
   font-weight: 500;
   cursor: pointer;
   transition: background-color 0.2s ease;
}

.payments_of_close-modal-button:hover {
   background-color: #0052cc;
}

/* faq list css */
/* FAQ Section Styles */
.faq-section {
   padding: 80px 0;
   background-color: #fff;
   min-height: 100vh;
}

.container {
   max-width: 92%;
   margin: 0 auto;
   padding: 40px 20px;
}

.faq-header {
   text-align: center;
   margin-bottom: 48px;
}

.faq-header h1 {
   font-size: 2.5rem;
   font-weight: 700;
   color: #191f28;
   margin-bottom: 12px;
}

.subtitle {
   font-size: 1.1rem;
   color: #4e5968;
}

.category-tabs {
   display: flex;
   justify-content: center;
   gap: 12px;
   margin-bottom: 32px;
}

.category-tab {
   padding: 12px 24px;
   border-radius: 24px;
   border: none;
   background: #f8f9fa;
   color: #4e5968;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.2s ease;
}

.category-tab.active {
   background: #2a52be;
   color: #fff;
}

.search-bar {
   position: relative;
   margin-bottom: 32px;
}

.search-bar input {
   width: 100%;
   padding: 16px 48px 16px 20px;
   border-radius: 12px;
   border: 1px solid #e5e8eb;
   font-size: 1rem;
   outline: none;
   transition: border-color 0.2s ease;
}

.search-bar input:focus {
   border-color: #2a52be;
}

.search-icon {
   position: absolute;
   right: 16px;
   top: 50%;
   transform: translateY(-50%);
   color: #4e5968;
}

.faq-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.faq-item {
   border-radius: 16px;
   background: #fff;
   border: 1px solid #e5e8eb;
   overflow: hidden;
   transition: all 0.3s ease;
}

.faq-item:hover {
   border-color: #2a52be;
}

.faq-question {
   padding: 24px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   background: none;
   border: none;
   width: 100%;
   text-align: left;
}

.question-text {
   font-size: 1.1rem;
   font-weight: 600;
   color: #191f28;
}

.arrow-icon {
   transition: transform 0.3s ease;
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
}

.faq-content {
   padding: 0 24px 24px;
   color: #4e5968;
   line-height: 1.6;
}

.highlight {
   display: inline-block;
   background: #f0f4ff;
   color: #2a52be;
   padding: 4px 8px;
   border-radius: 6px;
   font-weight: 600;
   margin: 4px 0;
}

.faq-item.active {
   border-color: #2a52be;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item.active .arrow-icon {
   transform: rotate(180deg);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
   .faq-section {
      padding: 40px 0;
   }

   .category-tabs {
      flex-wrap: wrap;
   }

   .category-tab {
      padding: 8px 16px;
      font-size: 0.9rem;
   }

   .faq-question {
      padding: 16px;
   }

   .question-text {
      font-size: 1rem;
   }

   .faq-content {
      padding: 0 16px 16px;
   }
}

/*toasteditor common css */
/* 전체 컨테이너 스타일 */
.toastui-editor-contents {
   max-width: 900px;
   margin: 0 auto;
}

/* 섹션 공통 스타일 */
.demo-link,
.intro-section,
.benefits-section,
.styles-section,
.testimonials-section {
   margin-bottom: 60px;
   padding: 30px;
   background: #fff;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 제목 스타일 */
.toastui-editor-contents h2 {
   font-size: 22px;
   color: #333;
   margin: 40px 0 10px;
   padding-bottom: 15px;
   border-bottom: 3px solid #333;
}

.toastui-editor-contents h3 {
   font-size: 26px;
   color: #333;
   margin: 40px 0 20px;
}

.toastui-editor-contents h4 {
   font-size: 20px;
   color: #1a1a1a;
   margin: 25px 0 15px;
}

/* 링크 스타일 */
.demo-link {
   padding: 15px;
   background: #f8f9fa;
   border-left: 4px solid #0066cc;
   margin: 30px 0;
}

.demo-link a {
   color: #0066cc;
   text-decoration: none;
   word-break: break-all;
}

.demo-link a:hover {
   text-decoration: underline;
}

/* 리스트 스타일 */
.toastui-editor-contents ul {
   padding-left: 20px;
   margin: 15px 0;
}

.toastui-editor-contents ul li {
   margin: 10px 0;
   line-height: 1.6;
}

/* 특수 섹션 스타일 */
.benefit-item,
.style-item {
   margin-bottom: 30px;
   padding: 20px;
   background: #f8f9fa;
   border-radius: 8px;
   transition: transform 0.2s;
}

.benefit-item:hover,
.style-item:hover {
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 인용구 스타일 */
.testimonial-item {
   margin: 30px 0;
   padding: 20px;
   background: #f8f9fa;
   border-radius: 8px;
   border-left: 4px solid #0066cc;
}

.testimonial-item blockquote {
   margin: 0;
   padding: 0;
}

.testimonial-item p {
   font-size: 18px;
   font-style: italic;
   color: #333;
   margin-bottom: 10px;
}

.testimonial-item footer {
   color: #666;
   font-size: 14px;
}

/* 강조 텍스트 스타일 */
.toastui-editor-contents em {
   color: #0066cc;
   font-style: normal;
   font-weight: 500;
}

/* 이모지 강조 */
.benefit-item h4,
.style-item h4 {
   display: flex;
   align-items: center;
   gap: 10px;
}

/* 반응형 조정 */
@media (max-width: 768px) {
   .toastui-editor-contents {
      padding: 15px;
   }

   .demo-link,
   .intro-section,
   .benefits-section,
   .styles-section,
   .testimonials-section {
      padding: 20px;
      margin-bottom: 40px;
   }

   .toastui-editor-contents h2 {
      font-size: 28px;
   }

   .toastui-editor-contents h3 {
      font-size: 24px;
   }

   .toastui-editor-contents h4 {
      font-size: 18px;
   }
}
