/* General Styles for the Buy Now Page */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Dark mode background */
    color: #e0e0e0; /* Light text color */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    min-height: 100vh; /* Full viewport height */
}

/* Header Styles */
header {
    width: 100%; /* Full width */
    background-color: #1e1e1e; /* Dark background for header */
    color: #f39c12; /* Orange text color in header */
    text-align: center;
    padding: 20px; /* Padding for spacing */
    position: sticky; /* Stick to the top while scrolling */
    top: 0;
    z-index: 1; /* Ensure it’s above other content */
}

/* Buy Now Details Section */
.buy-now-details {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center;
    align-items: center;
    text-align: center; /* Center text inside the container */
    width: 100%;
    max-width: 600px; /* Max width for content */
    padding: 20px;
}

/* Container Styles */
.container {
    padding: 20px;
    background-color: #1e1e1e; /* Dark background for container */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Payment Form Styles */
form {
    width: 100%; /* Full width of the container */
}

