
#app-download {
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* padding-top: 40px; */
}

.app-download-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    /* background-color: #e4fae5; */
    margin-left: 50px;
    margin-right: 50px;
    border-radius: 12px;
}

.app-download-content {
    flex: 1;
}

.app-download-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.app-download-content h2::before {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: #2c3e50;
    margin: 0 auto 10px 0;
    border-radius: 5px;
}

.app-download-content p {
    max-width: 105%;
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
}

.app-buttons {
    display: flex;
    gap: 20px;
}

.app-button {
    display: inline-block;
}

.app-button img {
    width: 160px;
    height: auto;
    transition: transform 0.3s;
}

.app-button img:hover {
    transform: scale(1.05);
}

.app-screenshot {
    flex: 1;
    text-align: right;
}

.app-screenshot img {
    max-width: 45%;
    height: auto;
}
