.signature-products {
    height: 400px;
    padding: 2rem 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

.signature-products-header {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
}

.signature-products-title {
    text-align: center;
    width: 100%;
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.signature-products-items {
    width: 75%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    float: right;
}

.signature-products-item {
    width: calc(33.333% - 1rem);
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signature-products-item figure {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.signature-products-item img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 8px;
}

.signature-products-item figcaption {
    font-weight: bold;
    color: #333;
    margin: 1rem 0 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .signature-products {
        height: auto;
        padding: 2rem 0;
    }

    .signature-products-header,
    .signature-products-items {
        width: 100%;
        height: auto;
        float: none;
    }

    .signature-products-header {
        margin-bottom: 2rem;
    }

    .signature-products-items {
        flex-direction: column;
    }

    .signature-products-item {
        width: 100%;
        height: auto;
        margin-bottom: 2rem;
    }

    .signature-products-item img {
        height: 300px;
    }
}