body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f0f0f0; 
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    max-width: 960px; /* Adjust as needed */
    margin: 20px;
    /* background-color: #F7F4F3; */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.content {
    flex: 2; /* Takes up more space */
    padding: 20px;
}
#h1{
    font-size: 15px;
    text-align: center;
}
#h2{
    font-size: 15px;
}
.header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.logo {
        max-width: 50px; /* Adjust logo size */
        margin-bottom: 10px;
}

.img-section {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

.details, .requirements, .contact, .terms {
    font-size: 15px;
    margin-bottom: 20px;
}

/* Payment Popup Styles */
.payment-box {
    margin-top: 50px;
    width: 50%;
    padding: 20px;
    border: 1px solid black; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    height: 400px;
    background-color: #f8f8f8;
}
form {
    display: flex;
    flex-direction: column;
}
form input {
    margin: 5px 0;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}
button {
    background: red;
    color: white;
    padding: 6px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}
button:hover {
    background: darkred;
}


/* Responsive Design */
@media (min-width:200px) and (max-width:900px) {
    .container {
        flex-direction: column; /* Stack content vertically */
    }
    .payment-box{
        flex-basis: auto; /* Reset flex-basis for stacking */
        margin-top: 20px; /* Add some spacing */
        align-items: center;
        width: 100%;
    }
}