/* GHL Promotion After Problems */
.ghl-promotion-problems {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.ghl-promotion-problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diagonal" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M0,10 L10,0" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23diagonal)"/></svg>');
}

.ghl-problems-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ghl-problems-text h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
}

.ghl-problems-text .ghl-highlight {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.ghl-problems-text p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.5;
}

.ghl-problems-button {
    background: white;
    color: #ef4444;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.ghl-problems-button:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: #ef4444;
}

.ghl-problems-button i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ghl-promotion-problems {
        padding: 1.5rem 0;
    }
    
    .ghl-problems-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .ghl-problems-text h3 {
        font-size: 1.4rem;
    }
    
    .ghl-problems-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ghl-problems-text h3 {
        font-size: 1.2rem;
    }
    
    .ghl-problems-text p {
        font-size: 0.95rem;
    }
    
    .ghl-problems-button {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
}