.eco-page-wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: #f0f2f5;
    /* Màu nền xám nhẹ */

    /* QUAN TRỌNG NHẤT: Padding-top lớn hơn chiều cao Header */
    /* Header thường cao khoảng 80-100px, mình để 150px cho thoáng */
    padding-top: 150px;

    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;

    /* Đảm bảo nội dung nằm dưới Header về mặt thứ tự lớp */
    position: relative;
    z-index: 1;
}

.eco-content {
    max-width: 1200px;
    margin: 0 auto;
}

.eco-title {
    font-family: sans-serif;
    /* Hoặc font dự án của bạn */
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.eco-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    padding: 10px 0;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
    /* Hiệu ứng di chuyển nhẹ khi hover */
    color: #333;
}