@media (min-width: 769px) { /*Desktop only */
    .content-wrapper {
        background-image: url('../images/banners/download_desk.webp'), var(--fallback-gradient);
    }
}
@media (max-width: 768px) { /*Mobile only */
    .content-wrapper {
        background-image: url('../images/banners/download_mobi.webp'), var(--fallback-gradient);
    }
    .checkbox-container {
        margin-left: 5%;
        font-size: 0.9em;
    }
}
.terms-icon {
    height: auto;
    width: 64px; 
    flex-shrink: 0;
}
.terms-warning a {
    color: #675D49;
    font-weight: bold;
    text-decoration: none;
}
.terms-warning a:hover {
    text-decoration: underline;
}
.vari-start a {
    color: #CEB992;
    font-weight: bold;
    text-decoration: none;
}
.vari-start a:hover {
    text-decoration: underline;
}
.checkbox-container {
    width: 100%;
    padding: 8px 20px;
    margin-left: 15%;
    color: #f3eee4;
    font-size: 1em;
}
.checkbox-container label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    accent-color: #9b8b6e;
}
.download-button-container {
    width: 100%;
    text-align: center;
    padding: 25px 0 10px 0;
}
.download-button {
    background-color: #675D49;
    color: #CEB992;
    border: 2px solid #CEB992;
    padding: 12px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.download-button:hover {
    background-color: #9b8b6e;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.animated-back-button img {
    transition: transform 0.2s ease-in-out; /* Smooth transition for hover/active states */
}
.animated-back-button:hover img {
    transform: scale(1.08); /* Slightly enlarge on hover */
}
.animated-back-button:active img {
    transform: scale(0.95); /* Slightly shrink on click */
}

