/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Pricing Section */
#pricing {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-header h2 {
    font-size: 2em;
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    text-align: center;
    color: #666;
    font-size: 1em;
    margin-bottom: 40px;
}

/* Pricing Item */
.pricing-item1 {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.pricing-item:hover {
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.pricing-header h3 {
    font-size: 1.5em;
    color: #333;
    margin: 10px 0;
}

.pricing-header h4 {
    font-size: 1.2em;
    color: #f35b04;
    margin: 5px 0;
}

ul {
    list-style-type: none;
    padding: 0;
    /* width: 100%; */
}

ul li {
    display: flex;
    align-items: center;
    font-size: 1em;
    color: #555;
    padding: 8px 0;
}

ul li i {
    color: #007bff;
    margin-right: 10px;
}

ul li span {
    font-size: 0.95em;
    line-height: 1.5;
}

/* Button */
.buy-btn {
    display: inline-block;
    background: #f35b04;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-align: center;
    transition: 0.3s;
    font-size: 1em;
    text-decoration: none;
}

.buy-btn:hover {
    color: #fff;
    background: var(--secondary-color);
}

/* Featured Plan */
.pricing-item.featured {
    border: 2px solid var(--secondary-color);;
}

/* Responsive */
@media (min-width: 768px) {
    .row1 {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .col-lg-4 {
        flex: 1;
       
    }
}
