.download-app-wrap {
    position: relative;
    width: 98%;
    height: 450px;

    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 50px;

    border-radius: 35px;
    background-color: #FDD6B5;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.download-app-image {
    width: 50%;
    z-index: 1;

    object-fit: cover;
}

.download-app-content {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.download-subtitle {
    color: #1b1a18ba;
    font-family: 'Godber';
    font-size: 35px;
    margin: 0;
}

.download-title {
    color: #1B1A18;
    font-family: 'Godber';
    font-size: 80px;
    font-weight: 200;

    margin: 0;
}


.download-btn {
    padding: 14px 40px;
    margin-top: 25px;

    border-radius: 9999px;
    border: none;
    background-color: #F79346;

    cursor: pointer;

    text-decoration: none;
    color: #fff;
    font-family: 'Godber';
    font-size: 22px;

    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #6f4e37;
    transform: scale(1.05) rotate(-2deg);
}

.download-btn:active {
    background-color: #7c5940;
    transform: scale(0.95);
}

/* --- Media Queries for download-app.css --- */
@media screen and (max-width: 1024px) {
    .download-app-image { width: 70%; }
    .download-title { font-size: 60px; }
    .download-subtitle { font-size: 28px; }
}
@media screen and (max-width: 768px) {
    .download-app-image { width: 90%; opacity: 0.6; }
    .download-title { font-size: 45px; }
    .download-subtitle { font-size: 22px; text-align: center; }
    .download-app-content { text-align: center; padding: 0 20px;}
    .download-app-wrap { width: 96%; height: auto; padding: 35px 0; }
}
@media screen and (max-width: 480px) {
    .download-title { font-size: 35px; }
    .download-subtitle { font-size: 18px; }
}