.kitchen {
            
            background: #201f69;
            color: #ffffff;
            padding: 4rem 0 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .kitchen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            
        }
        
        .kitchen h4 {
            color: #f39c12;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            font-size: 20px;
        }
        
        .kitchen h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            border-radius: 2px;
        }
        
        .kitchen ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .kitchen ul li {
            margin-bottom: 0px;
            transition: all 0.3s ease;
        }
        
        .kitchen ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            padding: 0.3rem 0;
        }
        
        .kitchen ul li a:hover {
            color: #f39c12;
            transform: translateX(8px);
            text-shadow: 0 2px 4px rgba(243, 156, 18, 0.3);
        }
        
        .kitchen ul li a i {
            margin-right: 0.5rem;
            width: 16px;
            opacity: 0.7;
        }
        
        .kitchen-info p {
            color: #ffffff;
            line-height: 1.7;
            margin-bottom: 1rem;
            font-size: 15px;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #bdc3c7;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .social-icons a:hover {
            background: #f39c12;
            color: #ffffff;
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
        }
        
        .kitchen-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 0px;
            padding-top: 10px;
            text-align: center;
        }
        
        .kitchen-bottom p {
            color: #ffffff;
            margin: 0;
            font-size: 15px;
        }
        
        .kitchen-bottom .brand {
            color: #f39c12;
            font-weight: 600;
        }

       
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .kitchen {
                padding: 3rem 0 1.5rem;
            }
            
            .kitchen h4 {
                font-size: 1.2rem;
                margin-bottom: 1.2rem;
            }
            
            .social-icons {
                justify-content: center;
            }
            
            .kitchen ul li a {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .kitchen {
                padding: 2rem 0 1rem;
            }
            
            .kitchen h4 {
                font-size: 1.1rem;
                text-align: center;
            }
            
            .kitchen h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .kitchen ul li a {
                /* justify-content: center; */
                text-align: center;
                font-size: 15px;
            }
            
            .kitchen-info {
                text-align: center;
            }
        }


        #sss {
            color: #fff;
            line-height: 60px;
        }

        #ddd {
            line-height: 20px;
            margin-bottom: 5px;
        }