/* UT-Support-Index.css */

/* Styles specific to the loaded support content within #divMain */

.support-container {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 20px auto;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.support-title {
    color: #2C3E50;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2a7d4f;
}

.support-section {
    margin: 30px 0;
    padding: 20px;
    background-color: #F8F9F9;
    border-radius: 10px;
}

.kakao-chat-btn {
    display: inline-block;
    background-color: #FFEB00; /* Kakao Yellow */
    color: #3C1E1E; /* Kakao Brown */
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 20px auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.kakao-chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.kakao-chat-btn img {
    vertical-align: middle;
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.contact-info {
    margin-top: 40px;
    color: #7F8C8D;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info p {
    margin: 8px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .support-container {
        padding: 25px 15px;
    }
    
    .support-title {
        font-size: 28px;
    }
    
    .kakao-chat-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
} 