        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 20px;
            color: #333;
        }
        .container {
            max-width: 1000px;
            margin: 0 auto;
        }
        h1 {
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
        }
        h2 {
            color: #2980b9;
            margin-top: 30px;
        }
        .back-to-top {
            text-align: right;
            margin-top: 20px;
        }
        .back-to-top a {
            color: #3498db;
            text-decoration: none;
            font-size: 0.9em;
        }
        
        .registration-form {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 30px;
}

.section-title {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #0d6efd;
}
/* User menu styles */
.user-menu {
    background-color: #333;
    color: white;
    padding: 10px;
    position: relative;
}
.user-menu .menu-toggle {
    cursor: pointer;
    font-size: 24px;
    display: none; /* Hide by default on large screens */
}
.user-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.user-menu ul li {
    margin: 0 15px;
}
.user-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
}
.user-menu ul li a:hover {
    background-color: #555;
    border-radius: 4px;
}
/* For small screens, show the toggle button and make the menu vertical */
@media (max-width: 767px) {
    .user-menu .menu-toggle {
        display: block;
    }
    
    .user-menu ul {
        flex-direction: column;
        display: none; /* Initially hidden on small screens */
    }
    
    .user-menu ul li {
        margin: 5px 0;
    }
}
/* Add to the bottom of style.css */
.terms-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #0d6efd;
}

.form-check-label a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.order-form {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.amount-display {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 20px;
}

.form-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section h5 {
    margin-bottom: 15px;
    color: #333;
}

.binding-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.binding-option {
    border: 1px solid #dee2e6;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.binding-option:hover {
    border-color: #86b7fe;
}

.binding-option.selected {
    border-color: #0d6efd;
    background-color: #f0f7ff;
}

.binding-option input[type="radio"] {
    margin-right: 5px;
}

.quality-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #6c757d;
}
/* Add any additional styles you need here */





