
/* Download Section Styles */
.download-section {
    background-color: #c6b4fb;
    padding: 80px 0;
    text-align: center;
}

.download-content {
    max-width: 1280px;
    margin: 0 auto;
}

.download-title {
    color: white;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.2;
}

.download-text {
    color: white;
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 400;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-button {
    display: flex;
    align-items: center;
    background-color: #4318be;
    color: white;
    text-decoration: none;
    padding: 20px 24px;
    border-radius: 24px;
    width: 240px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-button:hover {
    background-color: #3a15a8;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 24, 190, 0.3);
}

.button-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
    border-right: 1px solid #fff;
    padding-right: 10px;
}

.button-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.button-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.button-text-top {
    font-size: 9px;
    color: white;
    font-weight: 400;
    line-height: 1.2;
}

.button-text-bottom {
    font-size: 15px;
    color: white;
    font-weight: 600;
    line-height: 1.2;
}
.button-text-bottom.corporate {
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-section {
        padding: 60px 20px;
    }

    .download-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .download-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .download-button {
        width: 280px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .download-title {
        font-size: 28px;
    }

    .download-text {
        font-size: 14px;
    }

    .download-button {
        width: 100%;
        max-width: 280px;
    }
}
