#personalized-help {
    background: linear-gradient(135deg, var(--background-light), #f9fbfc);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#personalized-help::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(32, 178, 170, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.personalized-help-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.personalized-help-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.personalized-help-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-personalized-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #25D366, #20b2aa);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-personalized-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent
    );
    transition: all 0.4s ease;
}

.btn-personalized-help:hover::before {
    left: 100%;
}

.btn-personalized-help svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.btn-personalized-help:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #20b2aa, #25D366);
}

.btn-personalized-help:hover svg {
    transform: translateX(5px) scale(1.1);
}

