.custom-page-header {
    padding-bottom: 60px;
}

.files {
    margin-top: 55px;
}

.files a {
    text-decoration: none;
}

.files:last-child {
    margin-bottom: 0;
}

.file-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 650px;
    margin-bottom: 20px;
    font-size: 16px;
}

.file-row-left-part {
    display: flex;
    align-items: center;
    min-width: 0;
}

.file-icon {
    background-color: none;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.file-icon img {
    display: block;
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
}

.file-text {
    margin-left: 16px;
    text-transform: uppercase;
}

.file-text a {
    color: #282828;
}

.file-text a:hover {
    color: #FFAA00;
}

.download-text {
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.download-text a {
    position: relative;
    color: #ABABAB;
}

.download-text a:hover {
    color: #282828;
}

.download-text a::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 13.125V4.375' stroke='%23999' stroke-width='0.84375' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.625 13.125C15.625 14.5056 14.5056 15.625 13.125 15.625H6.875C5.49437 15.625 4.375 14.5056 4.375 13.125' stroke='%23999' stroke-width='0.84375' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.125 10L9.99939 13.1256L6.87439 10' stroke='%23999' stroke-width='0.84375' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    position: absolute;
    margin-left: 5px;
    transition: filter 0.3s ease;
}

.download-text a:hover::after {
    filter: brightness(0);
}

@media (max-width: 768px) {
    .custom-page-header {
        padding-bottom: 40px;
    }

    .files {
        margin-top: 46.25px;
    }

    .file-row {
        width: 100%;
        font-size: 14px;
    }

    .file-icon {
        flex: 0 0 39px;
        width: 39px;
        height: 39px;
    }

    .file-icon img {
        width: 32px;
        height: 32px;
    }


    .file-text {
        margin-left: 14px;
        font-size: 14px;
    }

    .download-text a {
        display: none;
    }

    .download-text::after {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 13.125V4.375' stroke='%23999' stroke-width='0.84375' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.625 13.125C15.625 14.5056 14.5056 15.625 13.125 15.625H6.875C5.49437 15.625 4.375 14.5056 4.375 13.125' stroke='%23999' stroke-width='0.84375' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.125 10L9.99939 13.1256L6.87439 10' stroke='%23999' stroke-width='0.84375' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        display: block;
        transition: filter 0.3s ease;
    }

    .download-text:hover::after {
        filter: brightness(0);
    }
}