.contact_section {
    /* 필요한 경우 추가적인 섹션 스타일 */
}

.contact-description {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.custom-form {
    max-width: 700px; /* 폼 최대 너비 */
    margin: 0 auto; /* 중앙 정렬 */
}

/* 폼 응답 메시지 스타일 (AJAX 사용 시) */
.form-response-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.form-response-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-response-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
} 
.form-group label .required{
    color: red;
}