.sustainability-section {
    margin-top: 90px;
    padding: 60px 20px;
}

.s-container {
    max-width: 1000px;
    margin: auto;
}

/* TITLE */
.s-container h1 {
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
}

.s-container h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #c9a24d;
    margin-top: 10px;
}

/* INTRO */
.s-intro {
    color: #aaa;
    margin-bottom: 60px;
    line-height: 1.7;
}

/* BLOCK */
.s-block {
    display: flex;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* LEFT */
.s-left {
    flex: 1;
}

.s-left h3 {
    color: #fff;
}

/* RIGHT */
.s-right {
    flex: 2;
}

.s-right p {
    color: #bbb;
    margin-bottom: 15px;
}

/* 🔥 PREMIUM LIST */
.s-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.s-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #ddd;
}

/* GOLD DOT */
.s-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #c9a24d;
    border-radius: 50%;
}

/* HOVER */
.s-block:hover {
    transform: translateX(5px);
    transition: 0.3s;
}

/* MOBILE */
@media(max-width:900px){
    .s-block {
        flex-direction: column;
        gap: 10px;
    }
}