/* Exact Design Match */
.materials-section {
    padding: 60px 20px;
    background: #fff;
}

.materials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Visual */
.materials-visual {
    position: sticky;
    top: 100px;
}

.materials-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Right Side - List */
.materials-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.material-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.material-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.material-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #E53935;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.material-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .materials-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .materials-visual {
        position: relative;
        top: 0;
    }
    
    .material-item h3 {
        font-size: 16px;
    }
    
    .material-item p {
        font-size: 14px;
    }
}
