.download__column {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr); 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

@media (max-width: 768px) {
    .download__column {
        grid-template-columns: 1fr;
    }
}

.download-link {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #c3c8c5;
    border-radius: 10px; 
    box-sizing: border-box; 
    background-color: #ffffff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; 
}

.download-link img {
    max-width: 100px; 
    height: auto; 
}

.download-link__wrapper {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.download-link__name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-decoration: none;
}

.download-link__text a {
    font-size: 16px;
    color: #000 !important; 
    text-decoration: none; 
}

.frame.download {
    padding: 10px;
    background-color: #fafafa;
    border-radius: 10px;
}

.download-link.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.download-link:hover {
    background-color: #fafafa; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transform: translateY(-5px);
}

.layout-main__title {
    display: none;  
    font-size: 30px;
}

.frame.download {
    margin-top: 10px; 
    margin-bottom: 10px; 
}


.custom-frame {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    padding: 0;
    border: 1px solid #ffffff;
    border-radius: 0;
    background-color: #ffffff;
}


.custom-frame__image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.custom-frame__image img {
    max-width: 100%; 
    height: auto;
}

.custom-frame__text {
    flex: 1;
    max-width: 50%;
    padding-left: 20px;
    padding-top: 0; 
    padding-bottom: 0; 
}

.custom-frame__text h2 {
    font-size: 1.5em;
}

.custom-frame__text a {
    color: red;
    text-decoration: none;
}

.custom-frame__text a:hover {
    text-decoration: underline;
}

.custom-frame__button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    background-color: #6e6968 !important;
    color: white !important; 
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-frame__button:hover {
    background-color: #4a4a4a;
}


@media (max-width: 768px) {
    .custom-frame {
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0 auto; 
        max-width: 100%; 
    }

    .custom-frame__text, .custom-frame__image {
        max-width: 90%; 
        padding-left: 0;
        padding-right: 0;
    }

    .custom-frame__text {
        order: 2;
        padding-top: 20px;
        text-align: left;
    }

    .custom-frame__image {
        order: 1;
        padding: 0;
    }
}