/* Custom styles for the App Promo Section */
.app-promo-section {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 40px 0;
}
[data-theme='dark'] .app-promo-section {
    background: var(--bg-color);
    color: var(--text-color);
}

.app-promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.app-promo-text {
    flex: 1;
    max-width: 55%;
}

.app-promo-text h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 20px;
}

.app-promo-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.app-download-buttons {
    display: flex;
    gap: 20px;
}

.app-download-buttons img {
    height: 50px;
    transition: transform 0.3s ease;
}

.app-download-buttons img:hover {
    transform: translateY(-5px);
}

.app-promo-image {
    flex: 1;
    max-width: 40%;
}

.app-promo-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .app-promo-content {
        flex-direction: column;
        text-align: center;
    }

    .app-promo-text {
        max-width: 100%;
    }

    .app-download-buttons {
        justify-content: center;
    }

    .app-promo-image {
        max-width: 80%;
        margin-top: 40px;
    }
}
