.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.product-card {
    text-align: center;
    transition: transform 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    width: 100%;
}
.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}
.product-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.product-name::after {
    content: " ›";
    font-size: 18px;
    color: #888;
}

.feature-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}
.feature-section.reverse {
    flex-direction: row-reverse;
}
.feature-content {
    flex: 1;
}
.feature-video {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    aspect-ratio: 3 / 2;
    width: 100%;
}
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.feature-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}
.feature-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
.feature-content strong {
    color: #111;
}
.btn-more {
    display: inline-block;
    background-color: #3197eb;
    color: #fff;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}
.btn-more::after {
    content: " >";
}
.btn-more:hover {
    background-color: #1a7fcb;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }
    .feature-section,
    .feature-section.reverse {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    .feature-content,
    .feature-video {
        width: 100%;
        flex: none;
    }
    .feature-video {
        aspect-ratio: 16 / 9;
    }
}