body {
    margin: 10px;
    padding: 0;
    background-color: #f0f8ff;
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.button-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.buy-button {
    display: inline-block;
    background-color: #F9A03F;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #e8880d;
}

.privacy-button {
    display: inline-block;
    background-color: #96cb8a;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.privacy-button:hover {
    background-color: #aeeca1;
}

.terms-button {
    display: inline-block;
    background-color: #84c8e8;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.terms-button:hover {
    background-color: #95d7f9;
}

/* Always keep button visible and in position even on small screens */
@media (max-width: 768px) {
    .button-container {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .buy-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}
