/* Welcome Page Specific Styles */
.box-container {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping to new rows */
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.box {
    flex: 1; /* Equal width for both boxes */
    background-color: white;
    padding: 1rem;
    box-sizing: border-box;
}

.box img {
    width: 100%;
    max-width: 100%; /* Prevent overflow */
    height: auto;
    object-fit: contain; /* Scale images properly */
    border-radius: 5px;
}

.box ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin: 0;
}

.buttons {
    margin-top: 20px;
}

.btn {
    padding: 15px 30px;
    /* CHANGE: New green background color */
    background-color: #28a745; /* A standard, professional green */
    /* CHANGE: New white text color */
    color: white; 
    border: none;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: not-allowed; /* Disabled state */
    /* Optional: Add a transition for a smoother hover effect */
    transition: background-color 0.2s ease;
}

.btn:not(:disabled) {
    cursor: pointer;
}

/* Optional: Add a hover state for the active button */
.btn:not(:disabled):hover {
    background-color: #218838; /* Slightly darker green on hover */
}

.terms-container {
    margin-top: 20px;
}

.terms-container label {
    font-size: 1em;
    color: #333;
}

.terms-container a {
    color: #007bff;
    text-decoration: none;
}

.terms-container a:hover {
    text-decoration: underline;
}