.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    color: #333;
    font-size: 1.5rem;
    margin: 0;
}

.modal-body {
    margin-bottom: 20px;
}

.service-features {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.service-features li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
    top: 0;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}

.price-section {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

.price-description {
    color: #666;
    margin-top: 5px;
}

#paypal-button-container {
    margin-top: 20px;
}
