<style>
        /* Maintain consistent branding 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);
        }
        .navbar-brand img {
            height: 70px;
        }
        .nav-link {
            color: #FE9900;
            font-weight: 500;
        }
        
        /* KS3 Hero Section */
        .ks3-hero {
            background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), 
                        url('https://images.pexels.com/photos/5905480/pexels-photo-5905480.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
            margin-top:20px;
        }
        .ks3-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .ks3-hero p.lead {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .igcse-badge {
            background-color: #ff9900;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        /* IGCSE Subjects Section */
        .subject-card {
            border: none;
            border-radius:8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom:30px;
            height: 100%;
            border-top: 4px solid #003366;
            background-image: linear-gradient(to right, #fdc281, #ffc7a7, #ffd2cb, #ffe1e6, #f8f1f4);
        }
        .subject-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .subject-card .card-body {
            padding: 20px;
        }
        .subject-category {
            font-weight: 600;
            color: #003366;
            margin-bottom: 15px;
        }
        
        /* Exam Preparation Section */
        .exam-prep-section {
            background-color: #f5f9ff;
            padding: 80px 0;
        }
        .exam-feature {
            background: #2A7B9B;
        background: radial-gradient(circle,rgba(42, 123, 155, 1) 0%, rgba(11, 227, 101, 1) 0%, rgba(237, 221, 83, 1) 92%);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            height: 100%;
            text-align: center;
        }
        .exam-feature-icon {
            font-size: 40px;
            color: #003366;
            margin-bottom: 20px;
        }
        
        /* Success Stories */
        .success-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        .success-quote {
            font-style: italic;
            position: relative;
            padding-left: 20px;
            border-left: 3px solid #ff9900;
        }
        
        /* 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;
        }
        .section-title {
            color: #003366;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 550px;
            height: 3px;
            background-color: #ff9900;
        }
        .btn-primary {
            background-color: #003366;
            border-color: #003366;
        }
        .btn-outline-primary {
            color: #003366;
            border-color: #003366;
        }
        .btn-outline-primary:hover {
            background-color: #003366;
            color: white;
        }
    </style>