.materials-section {
            background: #f7f2ea;
            padding: 80px 20px;
            text-align: center;
            font-family: 'Inter', sans-serif;
        }

        /* TITLE ROW */
        .materials-title-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .materials-title {
            background: #c9a889;
            color: #ff2b2b;
            padding: 14px 30px;
            border-radius: 12px;
            font-size: 28px;
            font-weight: 700;
        }

        .materials-tagline {
            font-size: 26px;
            font-weight: 700;
            color: #6f90cb;
            text-shadow: 0 0 6px rgba(0, 0, 0, .25);
        }

        /* SUBTEXT */
        .materials-subtext {
            max-width: 900px;
            margin: 20px auto 30px;
            font-size: 18px;
            font-weight: 600;
        }

        /* FEATURES */
        .materials-features {
            background: #c9a889;
            display: inline-block;
            padding: 20px 30px;
            border-radius: 12px;
            text-align: left;
            margin-bottom: 40px;
        }

        .materials-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .materials-features li {
            font-size: 18px;
            margin-bottom: 10px;
            position: relative;
            padding-left: 26px;
        }

        .materials-features li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #4CAF50;
            font-weight: 700;
        }

        /* TABLE */
        .materials-table-wrap {
            display: flex;
            justify-content: center;
        }

        .materials-table {
            border-collapse: collapse;
            width: 760px;
            max-width: 100%;
            background: #f7f2ea;
        }

        .materials-table td {
            border: 3px solid #000;
            padding: 26px;
            font-size: 18px;
            text-align: left;
        }

        .materials-table td:last-child {
            text-align: center;
            width: 200px;
        }

        /* DOWNLOAD BUTTON */
        .download-btn {
            background: #c9a889;
            color: #000;
            padding: 10px 26px;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 700;
            transition: .3s;
        }

        .download-btn:hover {
            background: #6f6a60;
            color: #fff;
        }

        /* RESPONSIVE */
        @media(max-width:768px) {

            .materials-title-row {
                flex-direction: column;
            }

            .materials-title {
                font-size: 22px;
            }

            .materials-tagline {
                font-size: 20px;
            }

            .materials-table td {
                font-size: 16px;
                padding: 18px;
            }
        }