/* Customer Support Section */
.customer-support-section {
    min-height: 65vh;
    background-image: url('../assets/images/customer-support/Mask\ Group\ 44@2x.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 90px 0;
}


.customer-support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.customer-support-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
}

.care-experts-logo {
    margin-bottom: 2rem;
}

.care-experts-logo .logo-img {
    height: 60px;
    width: auto;
}

.support-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.support-description {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: white;
    opacity: 0.95;
}

.support-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: white;
}

.btn-chat-experts {
    background-color: #ff5722;
    color: white;
    padding: 15px 75px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-chat-experts:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .customer-support-section {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .support-main-title {
        font-size: 2.5rem;
    }
    
    .support-description {
        font-size: 1.1rem;
    }
    
    .care-experts-logo .logo-img {
        height: 45px;
    }
    
    .customer-support-content {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .support-main-title {
        font-size: 2rem;
    }
    
    .support-description {
        font-size: 1rem;
    }
    
    .btn-chat-experts {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
