.hosting-hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.feature-card {
    transition: transform 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.pricing-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
}

.pricing-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px 10px 0 0;
}

.pricing-title {
    font-weight: 600;
    color: #212529;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
}

.price-period {
    font-size: 1rem;
    color: #6c757d;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #0d6efd;
    margin: 1rem auto;
}

.qr-code {
    max-width: 100px;
    height: auto;
}

.steps-list {
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: none;
    padding-left: 2rem;
}

.steps-list li:before {
    content: counter(step-counter) ".";
    font-weight: bold;
    position: absolute;
    left: 0;
    color: #0d6efd;
}