@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
}







.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 600;
    background-color: #d11112;
    color: white;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-modern:hover {
    background-color: #af0000;
    transform: translateY(-1px);
}


.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}



.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background-color: #d11112;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-download:hover {
    background-color: #af0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.btn-download .btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}


/* DOWNLOAD SECTIOM */
.top-section {
    margin: auto;
    background: #ececec;
}

.top-content {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 132px 40px;
    font-family: 'Montserrat', sans-serif;

}

.top-text {
    flex: 1;
}

.top-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #000;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.info {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 1.7;
}

.top-image {
    flex: 0 0 400px;
    height: 280px;
    overflow: hidden;
}

.top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
