/* 제품 문의 섹션 전용 스타일 */
.contact-section {
    background-color: #f8f9fa; /* 연한 그레이 배경 */
    padding: 60px 0;
    margin-top: 50px;
    border-top: 1px solid #eee;
}

.contact-section .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-section .text-area h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.contact-section .text-area p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.contact-section .text-area strong {
    color: #3498db; /* 강조 컬러 */
}

/* 버튼 스타일링 */
.btn-custom {
    display: inline-flex;
    align-items: center;
    background: #222; /* 검정색 버튼 */
    color: #fff;
    padding: 18px 45px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-custom i {
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.btn-custom:hover {
    background: #3498db; /* 호버 시 블루 변경 */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-custom:hover i {
    transform: translateX(5px); /* 화살표 살짝 움직임 */
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .contact-content {
        text-align: center;
        justify-content: center;
    }
    .contact-section .text-area h3 {
        font-size: 20px;
    }
    .btn-custom {
        width: 100%;
        justify-content: center;
    }
}