/* GoHighLevel Simple Promotion Section */
.ghl-promotion-simple {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #0583D2;
    border-bottom: 3px solid #0583D2;
}

.ghl-promotion-simple::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(5,131,210,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.ghl-simple-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ghl-simple-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #23272C;
    font-weight: 700;
}

.ghl-highlight {
    color: #0583D2;
    font-weight: 800;
}

.ghl-simple-text p {
    margin: 0;
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.5;
}

.cta-button.ghl-simple-button {
    background: linear-gradient(135deg, #0583D2, #0470b8) !important;
    color: white !important;
    border: none !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 131, 210, 0.3);
    white-space: nowrap;
}

.cta-button.ghl-simple-button:hover {
    background: linear-gradient(135deg, #0470b8, #0583D2) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 131, 210, 0.4);
    color: white !important;
}

.cta-button.ghl-simple-button i {
    margin-right: 0.5rem;
    color: white !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ghl-promotion-simple {
        padding: 2rem 0;
    }
    
    .ghl-simple-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .ghl-simple-text h3 {
        font-size: 1.5rem;
    }
    
    .ghl-simple-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ghl-simple-text h3 {
        font-size: 1.3rem;
    }
    
    .ghl-simple-text p {
        font-size: 0.95rem;
    }
    
    .ghl-simple-button {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
}