.download-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-sec {
    position: relative;
    background-color: #1a237e;
    padding: 120px 0 0;
    min-height: 900px;
    background-image: url(../image/background-ma.png);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.download-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 60px 20px;
    text-align: center;
}
.download-wrapper > h1 {
    font-size: 60px;
    color: #ccff00;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.download-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 50px;
    max-width: 600px;
}
.download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    justify-content: center;
}
.download-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.feature-card h3 {
    color: #ccff00;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}
.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}