        /* Unique Wrapper to isolate CSS */
        .recipes-section-wrapper {
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
            text-align: center;
            font-family: 'Lora', serif;
            background-color: #fff;
        }

        /* Main Heading */
        .recipes-section-wrapper .main-title {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 40px;
            color: #000;
        }

        /* Grid Layout (4 Columns) */
        .recipes-section-wrapper .recipes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        /* Individual Card */
        .recipes-section-wrapper .recipe-card {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Image Styling */
        .recipes-section-wrapper .recipe-card img {
            width: 100%;
            aspect-ratio: 1 / 1; /* Makes image square like in the picture */
            object-fit: cover;
            margin-bottom: 15px;
        }

        /* Category Label */
        .recipes-section-wrapper .recipe-category {
            color: #51806a; /* Teal/Green color */
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
            font-weight: bold;
        }

        /* Recipe Title */
        .recipes-section-wrapper .recipe-title {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
            color: #000;
            padding: 0 10px;
        }

        /* Center Button */
        .recipes-section-wrapper .btn-container {
            margin-top: 20px;
        }

        .recipes-section-wrapper .more-recipes-btn {
            background-color: #51806a;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 1px;
            display: inline-block;
            
        }

        .recipes-section-wrapper .more-recipes-btn:hover {
            background-color: #3d6150;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .recipes-section-wrapper .recipes-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .recipes-section-wrapper .recipes-grid { grid-template-columns: 1fr; }
            .recipes-section-wrapper .main-title { font-size: 28px; }
        }