.btn-orange {
    background-color: #FF8C00;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}


.btn-orange:hover {
    background-color: #e67e22;
    color: white;
}

.pro-card {
    background-color: white;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .025);
    border-radius: 1rem;
}

.pro-card li {
    padding-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-left: 5px;
    max-width: 100%;
    line-height: 1.4;
    font-weight: 400;
    white-space: normal;
    display: flex;
    align-items: flex-start;
}

.pro-card .fa-ul {
    margin-left: 1.8em;
    padding-right: 15px;
    max-width: 100%;
    list-style-type: none;
    width: 100%;
}

.pro-card:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.pro-card li i {
    color: #FF8C00;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.pro-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pro-card p {
    font-size: 1em;
    font-weight: 500;
}

.pricing-pro {
    border: 3px solid #FF8C00;
    position: relative;
    animation: shine-border 2s ease-in-out infinite;
    background-clip: padding-box;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

@keyframes shine-border {
    0% {
        border-color: #FF8C00;
        box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
    }
    50% {
        border-color: #FF8C00;
        box-shadow: 0 0 30px rgba(255, 140, 0, 0.9);
    }
    100% {
        border-color: #FF8C00;
        box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
    }
}