.offer-cont{
    padding-top: 80px;
    width: 80%;
    margin-left: 10%;
}
.offer-main{
    border: 1px solid #262262;
}
.toggle-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.toggle-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    background-color: #262262;
    color: white;
    cursor: pointer;
    font-size: 16px;
}


.content-section {
    text-align: center;
}

.offer-item, .ad-item {
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 10px;
}

.offer-item img, .ad-item img {
    width: 400px;
    height: auto;
}
.offer-item p, .ad-item p {
    font-size: 20px;
    font-weight: bold;
    color: #262262;
}
@media(max-width:480px){
    .offer-item, .ad-item {
         flex-direction: column;
    }
    
    .offer-item img, .ad-item img {
        width: 250px;
    }   
    .offer-item, .ad-item {
        text-align: left;
    } 
}