.ad-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--bg-section);
}

.ad-container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.ad-text {
    flex: 1;
    padding: 20px;
}

.ad-slogan {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 10px;
}

.ad-detail {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.ad-offer {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.ad-reward {
    font-weight: bold;
}

.ad-download-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: var(--btn-text);
    background-color: var(--btn-bg);
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.ad-download-btn:hover {
    background-color: var(--btn-bg-hover);
}

.ad-image {
    flex: 1;
    text-align: center;
}

.ad-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .ad-container {
        flex-direction: column;
    }

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

    .ad-download-btn {
        margin-top: 10px;
    }
}
