/* Landing Page Styles */

.price-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #dee2e6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price-display .h3 {
    color: #0d6efd;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 3rem;
    display: block;
}

/* Hero section enhancements */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Button enhancements */
.btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

/* Benefits flex box styling */
.benefits-container {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    flex: 1;
    text-align: center;
}

.benefit-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.benefit-text {
    font-weight: 500;
    color: #495057;
    font-size: 0.9rem;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .price-display {
        padding: 1rem;
    }
    
    .price-display .h3 {
        font-size: 1.5rem;
    }
    
    .benefits-container {
        flex-direction: column;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .benefit-item {
        width: 100%;
        justify-content: center;
    }
}
