/* Download buttons specific styles */
.downloadded-section {
    background-color: #beccce;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    padding: 0 30px 30px;
    margin-top: 30px;
}

.download-text {
    font-size: 18px;
    color: #000000;
    margin-bottom: 45px;
    font-weight: 500;
    background-color: #fff;
    padding: 8px 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: inline-block;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.store-buttons a {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    width: 160px;
    height: 50px;
}

.store-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.store-buttons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive styles */
@media (max-width: 768px) {
    .downloadded-section {
        max-width: 400px;
        margin: 15px auto;
        padding: 12px;
    }

    .download-text {
        font-size: 16px;
        padding: 6px 12px;
    }

    .store-buttons {
        gap: 12px;
    }

    .store-buttons a {
        width: 140px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .downloadded-section {
        max-width: 350px;
        margin: 10px auto;
        padding: 0 10px 10px;
    }

    .download-text {
        font-size: 14px;
        padding: 5px 10px;
    }

    .store-buttons {
        gap: 10px;
    }

    .store-buttons a {
        width: 130px;
        height: 40px;
    }
} 