﻿/* Hero Section */
.soy-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/Content/Images/Soyabean.jpg') center/cover no-repeat;
    padding: 110px 5%;
    text-align: center;
    color: white;
}

    .soy-hero h1 {
        font-size: 3rem;
        font-weight: 700;
    }

.soy-products {
    padding: 80px 5%;
    background: #f8fbf8;
}

/* Row Layout */
.soy-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

    .soy-row.reverse {
        flex-direction: row-reverse;
    }

/* Image */
.soy-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Content */
.soy-content {
    flex: 1;
}

    .soy-content h2 {
        font-size: 2rem;
        color: #1b5e20;
        margin-bottom: 20px;
    }

        .soy-content h2 span {
            font-size: 1rem;
            color: #ed6c02;
        }

    .soy-content ul {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .soy-content li {
        margin-bottom: 10px;
        font-size: 1rem;
        color: #444;
    }

/* Button */
.soy-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #1b5e20;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

    .soy-btn:hover {
        background: #ed6c02;
    }

/* Mobile */
@media (max-width: 992px) {
    .soy-row,
    .soy-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .soy-image img {
        max-width: 100%;
    }
}
