body {
    background-color: #f8f9fa;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 50px;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-container {
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}
.form-container h4 {
    color: #ffffff;
    font-weight: bold;
}
.price {
    font-size: 24px;
    color: #CF912C;
    margin-bottom: 10px;
}
.price-discount {
    font-size: 14px;
    color: gray;
    text-decoration: line-through;
}
.whatsapp-note {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.whatsapp-note img {
    margin-right: 5px;
}
.form-header{
    border-radius: 20px 20px 0px 0px;
    background-color: #002147;
    padding: 10px;
}
footer{
    margin-top: 50px;
    background-color:#002147;
    padding: 30px;
}
.checkout-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.order-summary {
    background-color: #002147;
    color: white;
    border-radius: 10px 10px 0 0;
}

.order-summary .logo {
    width: 100px;
    display: block;
    margin: 0 auto;
}

.summary-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.summary-list li {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between title and price */
    align-items: center; /* Center items vertically */
    margin: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #cde4c4;
}

.summary-list li span {
    flex: 1; /* Allow spans to take full width */
    
}

.summary-list li span:last-child {
    text-align: right; /* Align price to the right */
}

.coupon-section {
    background-color: #f1f1f1;
    padding: 10px;
    margin: 10px 0;
}

.deals-section h6 {
    margin-bottom: 10px;
}

.deal-card {
    background-color: #e9fce1;
    border: 1px solid #cde4c4;
    border-radius: 10px;
}

.contact-payment-section {
    padding-top: 10px;
    border-top: 1px solid #ddd;
}
