       /* --- SECTION 1: PASTA FEATURE (SCOPED) --- */
        #pasta-feature-section {
            max-width: 1250px; /* Width updated to match second section */
            margin: 20px auto;
            padding: 0 15px;
            font-family: 'Roboto', sans-serif;
            box-sizing: border-box;
        }

        #pasta-feature-section * {
            box-sizing: border-box;
        }

        #pasta-feature-section .header-section {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        #pasta-feature-section .the-latest {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 42px;
            margin: 0;
            padding-right: 20px;
            font-weight: 700;
            color: #000;
        }

        #pasta-feature-section .horizontal-line {
            flex-grow: 1;
            height: 1px;
            background-color: #333;
        }

        #pasta-feature-section .content-wrapper {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: visible;
        }

        #pasta-feature-section .background-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        #pasta-feature-section .floating-box {
            position: absolute;
            top: 50%;
            right: 5%;
            transform: translateY(-50%);
            background-color: white;
            padding: 40px;
            width: 400px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            z-index: 10;
        }

        #pasta-feature-section .category {
            display: block;
            font-size: 14px;
            letter-spacing: 3px;
            color: #5f8d85;
            margin-bottom: 15px;
            font-weight: 400;
            text-transform: uppercase;
        }

        #pasta-feature-section .title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            line-height: 1.2;
            margin: 0 0 20px 0;
            color: #000;
            font-weight: 700;
        }

        #pasta-feature-section .description {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            font-weight: 300;
            margin: 0;
        }

        @media (max-width: 768px) {
            #pasta-feature-section .content-wrapper { height: auto; }
            #pasta-feature-section .floating-box {
                position: relative;
                width: 90%;
                right: 0;
                top: 0;
                transform: none;
                margin: -40px auto 20px;
                padding: 20px;
            }
            #pasta-feature-section .the-latest { font-size: 30px; }
        }

        /* --- SECTION 2: RECENT RECIPES GRID (SCOPED) --- */
        #recent-recipes-section {
            max-width: 1250px;
            margin: 50px auto;
            padding: 0 15px;
            font-family: 'Roboto', sans-serif;
            box-sizing: border-box;
        }

        #recent-recipes-section * {
            box-sizing: border-box;
        }

        #recent-recipes-section .recipe-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 60px;
        }

        #recent-recipes-section .recipe-card {
            text-align: center;
        }

        #recent-recipes-section .image-container {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 5;
            overflow: hidden;
            margin-bottom: 20px;
        }

        #recent-recipes-section .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        #recent-recipes-section .image-overlay {
            position: absolute;
            bottom: 10%;
            left: 0;
            right: 0;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        #recent-recipes-section .image-overlay span {
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        #recent-recipes-section .image-overlay h3 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            margin: 0;
            font-style: italic;
        }

        #recent-recipes-section .recipe-category {
            display: block;
            font-size: 12px;
            letter-spacing: 1.5px;
            color: #5f8d85;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        #recent-recipes-section .recipe-title {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            line-height: 1.3;
            color: #000;
            margin: 0;
            font-weight: 700;
        }

        #recent-recipes-section .footer-button-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-top: 40px;
        }

        #recent-recipes-section .line {
            flex-grow: 1;
            height: 1px;
            background-color: #333;
        }

        #recent-recipes-section .more-recipes-btn {
            background-color: #54866b;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 2px;
            font-weight: 400;
            margin: 0 0px;
            white-space: nowrap;
            border: none;
            display: inline-block;
        }

        @media (max-width: 900px) {
            #recent-recipes-section .recipe-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 500px) {
            #recent-recipes-section .recipe-grid { grid-template-columns: 1fr; }
            #recent-recipes-section .footer-button-container .line { display: none; }
        }