body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(image-asset.jpeg);
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #101010c1;
   /* Adjust opacity as needed */
    z-index: -1; /* Ensure the overlay is behind the content */
  }
.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header button {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
}

.header h1 {
    font-size: 18px;
}

.alert {
    display: flex;
    align-items: center;
    background-color: #fff4f4;
    border: 1px solid #ffdddd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-icon {
    background-color: #ff0000;
    color: #ffffff;
    font-size: 20px;
    padding: 10px;
    border-radius: 80%;
    margin-right: 10px;
   
}

.alert-content h2 {
    font-size: 16px;
    margin: 0;
}

.alert-content p {
    margin: 5px 0 0 0;
    font-size: 14px;
}

.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #ff0000;
    cursor: pointer;
}

.package {
    background-color: #e0f7fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-header h3 {
    margin: 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.package-features li:before {
    content: "✔";
    margin-right: 5px;
    color: #007bff;
}

.package-options label {
    display: block;
    margin-bottom: 10px;
}

.coupon {
    margin-bottom: 20px;
}

.coupon button {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 16px;
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-methods h3 {
    margin: 0 0 10px 0;
}

.payment-methods label {
    display: block;
    margin-bottom: 10px;
}

.continue-button {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

.payment-options {
    margin-top: 20px;
    text-align: center;
}

.payment-options img {
    max-width: 100%;
}
