video {
    width: 50%;
    display: block;
    margin: 0 auto;
}

.main-content {
    padding-top: 60px;
}

.video-container {
    text-align: center;
    margin-bottom: 20px;
}

.product-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}
.product-card {
    display: flex;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 15px;
    width: 550px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    padding: 15px;
    align-items: flex-start;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-image img {
    width: 150px;
    height: auto;
    margin: 55px 0 0 20px;
    mix-blend-mode: multiply;
}
.product-details {
    flex: 1;
}
.product-title {
    font-size: 1.2em;
    color: rgb(117, 56, 122);
    margin: 0 0 10px;
}
.product-description {
    font-size: 0.9em;
    color: #555;
    margin: 0 0 10px;
    font-weight: bold;
}
.features-list {
    text-align: left;
    font-size: 0.85em;
    color: #333;
    background-color: #eee;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
}
.features-list h4 {
    margin: 0;
    font-size: 1em;
    color: rgb(117, 56, 122);
}
.features-list hr {
    border: 0;
    height: 1px;
    background-color: #ccc;
    margin: 5px 0;
}
.features-list p {
    margin: 5px 0;
}
.cta-button, .datasheet-button,
.cta-button2, .datasheet-button2
 {
    background-color: var(--button_color);
    padding: 8px 12px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    margin: 5px;
    font-size: 0.85em;
}
.cta-button a,
.datasheet-button a,
.cta-button2 a,
.datasheet-button2 a
{
    color: white;
    text-decoration: none;
}
.cta-button:hover, .datasheet-button:hover {
    background-color: var(--button_color_hover);
}

.cta-button2, .datasheet-button2 { display: none;}

@media (max-width: 450px) {
    .product-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        margin: 0;
    }
    .product-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;

        align-items: center;
    }
    .product-details {
        margin: 0;
        padding: 0;
    }
    .product-card img {
        width: 150px;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    video {
        width: 100%;
    }

    .button-container {
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        margin: 0;
    }
    .cta-button2 {
        display: flex;
        flex-direction: row;
        /* order: 5; */
    }
    .datasheet-button2 {
        display: flex;
        flex-direction: row;
        /* order: 5; */
    }
    .product-image {
        /* order: 1; */
        display: flex;
        flex-direction: row;
    }

    .cta-button, .datasheet-button {
        display: none;
    }
}
