        body { 
            font-family: 'Roboto', sans-serif; 
            background-color: #fffaf5; 
            color: #2c3e50; 
            line-height: 1.6;
        }
        .navbar { 
            background-color: #e91e63 !important; 
            box-shadow: 0 2px 10px rgba(233,30,99,0.3);
            font-weight: 500;
        }
        .navbar-brand { 
            color: #fff !important; 
            font-weight: 700; 
            font-size: 1.5rem;
        }
        .hero { 
            background: linear-gradient(rgba(233,30,99,0.85), rgba(233,30,99,0.85)), url('https://via.placeholder.com/1920x800?text=Delicious+Monginis+Cakes'); 
            background-size: cover; 
            background-position: center; 
            color: white; 
            padding: 120px 0; 
            position: relative;
        }
        .hero-content { 
            display: flex; 
            align-items: center; 
            min-height: 500px;
        }
        .section { 
            padding: 100px 0; 
        }
        .pink-bg { 
            background: linear-gradient(135deg, #e91e63, #f48fb1); 
            color: white; 
        }
        .light-pink { 
            background-color: #fdf2f8; 
            border-bottom: 1px solid #f8bbd9;
        }
        .card { 
            border: none; 
            box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
            border-radius: 15px; 
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover { 
            transform: translateY(-5px); 
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }
        .btn-primary { 
            background: linear-gradient(135deg, #e91e63, #ad1457); 
            border: none; 
            border-radius: 25px; 
            padding: 12px 30px; 
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .btn-primary:hover { 
            background: linear-gradient(135deg, #c2185b, #e91e63); 
            transform: translateY(-2px);
        }
        footer { 
            background: linear-gradient(135deg, #2c3e50, #34495e); 
            color: white; 
            padding: 60px 0 30px;
        }
        .img-fluid-custom { 
            border-radius: 15px; 
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .img-fluid-custom:hover { 
            transform: scale(1.02);
        }
        #popupModal { 
            z-index: 9999; 
        }
        .modal-content { 
            border-radius: 20px; 
            border: none;
            box-shadow: 0 20px 60px rgba(233,30,99,0.3);
        }
        .form-label { 
            font-weight: 500; 
            color: #2c3e50;
        }
        h1, h2, h3, h4, h5 { 
            font-weight: 700; 
        }
        .lead { 
            font-weight: 300; 
            font-size: 1.25rem;
        }