.product-tech-container {
    background-color: #f9fafc;
    padding: 3rem 0;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.angled-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.image-section {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.tech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.content-section {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
}

.section-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    transform: translateY(20px);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #2c6ecb;
}

.text-block {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    transform: translateY(20px);
}

/* Animations */
.tech-image.animate-in {
    opacity: 1;
    transform: scale(1.05);
}

.section-title.animate-in,
.text-block.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-title.animate-in {
    transition-delay: 0.2s;
}

.text-block.animate-in {
    transition-delay: 0.4s;
}

/* Parallax effect */
@media (min-width: 769px) {
    .angled-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent 50%, #f5f7fa 50%);
        z-index: 1;
        pointer-events: none;
    }

    .content-section {
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    .product-tech-container {
        padding: 2rem 0;
    }
}
