* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

bodi {
    background: #f5f5f5;
}

/* SECTION */
.app-section {
    padding: 40px 20px;
}

/* CONTAINER */
.containerr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1100px;
    margin: auto;
}

/* LEFT SIDE */
.left {
    flex: 1;
    background: #fffccc;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-box {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.image-box img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* RIGHT SIDE */
.right {
    flex: 1;
    padding: 40px;
}

.right h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.right p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* BUTTONS */
.store-buttons {
    display: flex;
    gap: 15px;
}

.store-buttons img {
    height: 45px;
    transition: transform 0.3s ease;
}

.store-buttons img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left, .right {
        width: 100%;
        padding: 20px;
    }

    .right {
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}