.ad-box-banner {
    background: #f9f9f9;
    text-align: center;
    padding: 15px;
    height: 150px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.ad-box-vertical {
    background: #f9f9f9;
    text-align: center;
    padding: 15px;
    height: 620px;
    width: 300px;
    max-width: 20vw;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.ad-box-square {
    background: #f9f9f9;
    text-align: center;
    padding: 15px;
    height: 350px;
    width: 300px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* Sticky Sidebar */
.sticky-ad {
    position: sticky;
    top: 100px;
    z-index: 10;
    height: 640px;
}

@media (max-width: 991px) {
    .sticky-ad {
        position: static;
        margin-top: 20px;
        height: 0;
        display: none;
    }

    .ad-box-banner {
        text-align: center;
        margin: 0 auto;
        height: 220px;
    }

    .ad-box-square {
        text-align: center;
        margin: 0 auto;
    }

    .ad-box-vertical {
        display: none;
    }
}

.advertisement {
    width: 250px;
    /* Adjust the width */
    height: auto;
    background-color: #f8f8f8;
    /* Background color */
    border: 1px solid #ddd;
    /* Border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Shadow effect */
    border-radius: 8px;
    /* Rounded corners */
    overflow: hidden;
    margin: 20px;
}

.advertisement-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.advertisement-logo {
    width: 80%;
    max-width: 150px;
    /* Adjust logo size */
    margin-bottom: 15px;
}

.advertisement-text {
    text-align: center;
}

.advertisement-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #ff6600;
    /* Highlighted discount color */
    margin-bottom: 10px;
}

.advertisement-text p {
    font-size: 14px;
    margin-bottom: 15px;
}

.advertisement-text button {
    padding: 10px 20px;
    background-color: #ff6600;
    /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.advertisement-text button:hover {
    background-color: #e55b00;
    /* Hover effect */
}