.container-link {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    margin: 100px auto 0 auto;
    box-sizing: border-box;
}

.head-link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-link h1 {
    background-color: #2ee69f;
    color: #000;
    text-align: center;
    font-weight: normal;
    font-size: 2.81rem;
    padding: 5px 10px;
}

.description {
    background-color: #2ee69f;
    color: #000;
    font-weight: normal;
    font-size: 1rem;
    padding: 5px 10px;
}

.brands-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.brand-cell {
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease;
}

.brand-cell:hover {
    box-shadow: 0 6px 12px rgb(0, 0, 0);
}

.brand-cell img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.brand-cell .img-toyota {
    width: 155px;
    height: auto;
}

.brand-cell .img-chevrolet, .brand-cell .img-audi {
    height: 100px;
    width: auto;
}

.brand-cell .img-bentley {
    width: 290px;
    height: 100px;
}

.brand-header {
    color: #000;
    font-size: 1.25rem;
    margin: 10px 0;
}

.brand-description {
    font-size: 0.875rem;
    color: #000;
    padding: 0 10px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.brand-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #2ee69f;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.brand-btn:hover {
    background-color: #24b97e;
    transform: scale(1.05);
}

.btn-icon {
    width: 18px;
    height: 18px;
    display: block;
}

@media (max-width: 1200px) {
    .brands-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container-link h1 {
        font-size: 2.19rem;
    }

    .description {
        font-size: 0.875rem;
    }

    .brands-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-cell {
        padding: 15px;
    }

    .brand-cell .img-chevrolet {
        width: 260px;
        height: 100px;
    }

    .brand-cell .img-audi {
        width: 240px;
        height: 100px;
    }

    .brand-cell .img-bentley {
        width: 240px;
        height: 100px;
    }

    .brand-header {
        font-size: 1.25rem;
    }

    .brand-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 590px) {
    .brands-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container-link h1 {
        font-size: 1.56rem;
    }

    .brand-cell .img-chevrolet {
        width: 240px;
        height: 100px;
    }

    .brand-cell .img-audi {
        width: 220px;
        height: 100px;
    }

    .brand-cell .img-bentley {
        width: 220px;
        height: 100px;
    }
}