.sections-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .sections-container {
        flex-direction: row;
    }
}

.section-column {
    flex: 1;
}

.section-column .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.section-column .section-title h2 {
    font-size: 2rem;
    padding-bottom: 10px;
}

.section-column .section-title h2::after {
    left: 0;
    transform: none;
    width: 60px;
}

.process-list, .products-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-list li, .products-list li {
    margin-bottom: 30px;
    flex: 1;
    display: flex;
}

.process-item, .product-item {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    width: 100%;
}

.process-item-header, .product-item-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.process-item-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.2rem;
}

.product-item-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.2rem;
}

.process-item-title, .product-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.process-item-content, .product-item-content {
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
}

.process-item-content p, .product-item-content p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.process-item-image, .product-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.process-item-image img, .product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-item:hover .process-item-image img,
.product-item:hover .product-item-image img {
    transform: scale(1.05);
}

/* Gallery title spacing */
.gallery-title {
    margin-top: 80px;
}

/* Video title spacing */
.video-title {
    margin-top: 80px;
}