/* 전체 페이지 스타일 */
body {
    font-family: 'Noto Sans KR', Helvetica, sans-serif;;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.common_footer_contact {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.common_footer_contact h5 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.common_footer_contact h5 span {
    color: #3498db;
    font-weight: bold;
}

#frm_ask input[type="text"],
#frm_ask textarea {
    width: 100%;
    padding: 20px;  /* 패딩 증가 */
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

#frm_ask input::placeholder,
#frm_ask textarea::placeholder {
    color: #5a5a5a;  /* placeholder 색상을 더 연하게 */
    font-weight: normal;  /* 글꼴 두께를 얇게 */
}

#frm_ask textarea {
    height: 120px;  /* 높이 약간 증가 */
    resize: vertical;
}

#frm_ask button {
    width: 100%;
    padding: 15px;  /* 패딩 증가 */
    background-color: #ff8000;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

#frm_ask button:hover {
    background-color: #2980b9;
}

/* 반응형 스타일 */
@media (max-width: 768px) {

    body {
        padding: 0 !important;
    }

    .common_footer_contact {
        margin: 0;
        padding: 0;
    }

    #frm_ask input[type="text"],
    #frm_ask textarea {
        font-size: 14px;
        padding: 12px;  /* 모바일에서 패딩 약간 감소 */
    }

    #frm_ask button {
        font-size: 16px;
        padding: 12px;  /* 모바일에서 패딩 약간 감소 */
    }
}

/* 애니메이션 효과 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.common_footer_contact {
    animation: fadeIn 0.5s ease-in-out;
}

#frm_ask input[type="text"],
#frm_ask textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#frm_ask input[type="text"]:focus,
#frm_ask textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.fixed-div-right-bottom {
    position: fixed;
    bottom: 100px;
    right: 50px;
    width: 110px;
    height: auto;
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
}