.pricing-section {
    padding: 3rem 1rem;
    background-color: #f4f4f4;
    border-radius: 10px;
    max-width: 1400px;
    margin: 20px auto;
    text-align: center;
    width: 90%;
}

.pricing-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

/* Pricing Box Container */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Individual Pricing Box */
.pricing-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.pricing-box:hover {
    transform: translateY(-5px);
}

.pricing-box h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.price span {
    font-size: 1rem;
    color: #666;
}

/* Features List */
.features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.features li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555;
}

/* Buttons */
.select-plan {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-plan:hover {
    background-color: #0056b3;
}

/* Highlight Recommended Plan */
.recommended {
    border: 2px solid #007bff;
    position: relative;
}

.recommended::before {
    content: "Best Value!";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: white;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 5px;
}




/* Review Incentive */


#review-modal {
    display: none;  
    position: fixed;
    z-index: 1000;


    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);

}



.reviews-incentive {
    padding: 3rem 2rem;
    background-color: #f4f4f4;
    border-radius: 10px;
    max-width: 1400px;
    margin: 0px auto;
    margin-bottom: 20px;
    text-align: center;
    width: 90%;
}

.reviews-incentive h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.reviews-incentive p {
    font-size: 1.1rem;
    color: #555;
}
.reviews-incentive button{
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;


}

.reviews-incentive button:hover{
    background-color: #0056b3;
}
/* Modal Background */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centered Modal Content */
.modal-content {
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}



.modal-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}


.modal-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Input Fields */
.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}




.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #444;
    color: white;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    padding: 0;
}

.close-button:hover {
    background-color: #333;
}

.modal-content button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.modal-content button:hover {
    background-color: #0056b3;
}
