/* Checkbox Group Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #d7dadc;
    cursor: pointer;
    margin: 0;
}

.eula-link {
    color: #ff8b60;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.eula-link:hover {
    color: #ff6b3d;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1b;
    border-top: 1px solid #343536;
    margin-top: 4rem;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    color: #818384;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #818384;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff8b60;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        gap: 1rem;
    }
}
