/* Estilos para las tarjetas de planes */
.hosting-plans {
    background-color: #f8f9fa;
}

.plan-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
}

.featured-plan {
    border: 2px solid #ffc107;
}

.featured-plan .card-header {
    background: linear-gradient(135deg, #0d6efd 0%, #084298 100%);
}

.plan-price {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.plan-features li {
    display: flex;
    align-items: center;
}

.contact-box {
    border-left: 4px solid #0d6efd;
    transition: all 0.3s ease;
}

.contact-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .plan-card {
        margin-bottom: 2rem;
    }
    
    .contact-box .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}