.customer-section-container {
    padding: 100px 0;
}

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

/* FAQ 섹션 */
.faq-container {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-container h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: var(--primary-color);
}

.faq-item {
    border: 1px solid var(--footer-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    background-color: var(--header-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2em;
    color: var(--text-color);
}

.faq-question .toggle-icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    background-color: var(--section-bg);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* 답변 내용에 따라 적절히 조절 */
    padding: 20px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* 1:1 문의하기 섹션 (contact.html의 스타일 재사용) */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto 50px;
    background-color: var(--header-bg);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--header-shadow);
}

.contact-form-container h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--footer-border);
    border-radius: 4px;
    font-size: 16px;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: border-color 0.3s, background-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #003380;
}

/* 연락처 정보 섹션 */
.contact-info-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-container h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info-container p {
    font-size: 1.1em;
    line-height: 1.8;
}

/* 1:1 문의하기 버튼 컨테이너 */
.contact-button-container {
    text-align: center;
    margin-bottom: 50px;
}

/* 1:1 문의하기 버튼 디자인 */
.contact-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 4px;
    text-decoration: none; /* 링크 밑줄 제거 */
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #003380;
}