body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: #ffcc00;
    text-align: center;
    padding: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

main {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.filter {
    margin-bottom: 20px;
}

.filter label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.filter select, .filter button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    margin-top: 20px;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}
        
/* Контейнер для основного вмісту та реклами */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* Блок для реклами */
.advertisement {
    position: fixed;
    top: 100px;
    right: 0;
    width: 200px;
    padding: 20px;
    background-color: #f4f4f4;
    border-left: 3px solid #ffcc00;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.advertisement h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.advertisement p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.advertisement a {
    display: inline-block;
    background-color: #ffcc00;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.advertisement a:hover {
    background-color: #e6b800;
}

/* Медіа-запит для мобільних пристроїв */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .advertisement {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 20px;
    }

    main {
        padding: 10px;
        max-width: 100%;
    }

    header h1 {
        font-size: 2rem;
    }

    footer p {
        font-size: 0.875rem;
    }
}