 <style>
        /* Maintain consistent styling with main site */
        top-bar {
            background-color: #EE0E82;
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        top-bar a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
			padding:70px;
        }
        .navbar {
            background-color:#060270;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            height:auto;
            margin-top: 10px;
        }
        .navbar-brand img {
            height: 70px;
        }
        .nav-link {
            color: #FE9900;
            font-weight: 500;
        }
        
        /* KS2 Hero Section */
        .ks2-hero {
            background-image: linear-gradient(rgba(0,51,102,0.1), rgba(0,51,102,0.1)), 
                              url('https://i.pinimg.com/236x/d1/56/63/d15663c72376fa13130020e61d861552.jpg');
            background-size: cover;
            background-position: center;
            color: #FE9900;
            padding: 120px 0;
            text-align: center;
            margin-top:20px;
        }
        .ks2-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 25px;
        }
        .ks2-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* Curriculum Section */
        .curriculum-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }
        .curriculum-card:hover {
            transform: translateY(-10px);
        }
        .curriculum-card img {
            height:200px;
            object-fit:cover ;
        }
        .curriculum-card .card-body {
            padding: 25px;
        }
        .subject-badge {
            background-color: #ff9900;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 8px;
            margin-bottom: 8px;
            display: inline-block;
        }
        
        /* Daily Schedule */
        .schedule-table {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .schedule-table th {
            background-color: #003366;
            color: white;
            padding: 15px;
        }
        .schedule-table td {
            padding: 12px 15px;
            vertical-align: middle;
        }
        .schedule-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        /* Footer (consistent with main site) */
        footer {
            background-color: #060270;
            color: white;
            padding: 20px 0 20px;
        }
        footer h5 {
            color: #ff9900;
            margin-bottom: 5px;
			
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }
        footer a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-block;
            margin-right: 15px;
            font-size: 20px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 15px;
            margin-top: 10px;
            text-align: center;
        }
    </style>