/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Lato', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    text-align: center;
}

.header {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 2px solid #e67e22;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e67e22;
}

.back-to-home {
    padding: 10px 20px;
    color: #fff;
    border: 2px solid #ff0066;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.back-to-home:hover {
    background-color: #ff0066;
    color: #000;
}

.payment-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.payment-section h2 {
    font-size: 2em;
    color: #333;
}

.qr-container {
    margin: 20px 0;
}

.qr-code {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.payment-instructions {
    font-size: 1.2em;
    margin: 20px 0;
    color: #333;
}

.buy-now {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    color: #fff;
    background-color: #e67e22;
    border: 2px solid #e67e22;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.buy-now:hover {
    background-color: #d35400;
    color: #fff;
}

.terms {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.terms h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #ff0066;
}

.terms p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
}
/* Styling for the Form Notice Section */
.form-notice {
    margin: 30px auto;
    padding: 20px;
    background-color: #fffbe6; /* Light yellow background for attention */
    border-left: 5px solid #e67e22; /* Orange highlight border */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: left;
    max-width: 600px;
}

.form-notice p {
    font-size: 1.2em;
    line-height: 1.5;
    color: #333; /* Neutral text color for readability */
    margin: 0 0 15px 0; /* Add spacing below the paragraph */
}

.form-notice p strong {
    color: #e67e22; /* Highlight important text in orange */
}

.form-notice a.form-link {
    color: #d35400; /* Bold orange for the link */
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.form-notice a.form-link:hover {
    color: #e67e22;
    border-bottom: 2px solid #e67e22;
}

/* Styling for the Button */
.form-notice a.form-button {
    display: inline-block;
    margin-top: 15px; /* Spacing between the text and button */
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background-color: #e67e22; /* Orange button color */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.form-notice a.form-button:hover {
    background-color: #d35400; /* Darker orange on hover */
    transform: scale(1.05); /* Slight zoom effect on hover */
}