                      
        .coontainer {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }        
        h1, h2, h3, h4 {
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.3;
        }        
        p {
            margin-bottom: 15px;
            font-size: 18px;
        }        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            padding: 40px 0;
            text-align: center;
        }        
        .header-content {
            max-width: 800px;
            margin: 0 auto;
        }        
        .header-badge {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: bold;
        }        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }        
        .header-subtitle {
            font-size: 1.4rem;
            margin-bottom: 25px;
        }        
        /* Program Highlights Section */
        .highlights {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 40px 0;
        }        
        .highlight-card {
            flex: 0 0 48%;
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }        
        .highlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }        
        .highlight-icon {
            font-size: 40px;
            color: #3498db;
            margin-bottom: 15px;
        }        
        /* Specializations Section */
        .specializations {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }        
        .specialization-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }        
        .specialization-item {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid #3498db;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
        }        
        .specialization-item:hover {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            transform: scale(1.05);
        }        
        /* Why Join Section */
        .why-join {
            background-color: #f9f9f9;
            padding: 40px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }        
        .why-join ul {
            list-style-type: none;
            padding-left: 0;
        }        
        .why-join li {
            padding: 15px 0;
            padding-left: 40px;
            position: relative;
            font-size: 18px;
        }        
        .why-join li:before {
            content: "✓";
            color: #27ae60;
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 24px;
        }        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            text-align: center;
            padding: 60px 20px;
            border-radius: 15px;
            margin: 40px 0;
        }        
        .fee-badge {
            background-color: #e74c3c;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            display: inline-block;
            font-size: 32px;
            font-weight: bold;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .bttn {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s ease;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: none;
            cursor: pointer;
        }
        
        .bttn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .testimonial-card {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #3498db;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #2c3e50;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: #f9f9f9;
            padding: 40px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 20px;
        }
        
        .faq-question {
            font-weight: bold;
            font-size: 20px;
            margin-bottom: 10px;
            color: #2c3e50;
        }
                                                               
        /* Form Styles */
        .form-coontainer {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .form-coontainer h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        input, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border 0.3s;
        }
        
        input:focus, select:focus {
            border-color: #3498db;
            outline: none;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #3498db;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 1000;
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        .back-to-top:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
        }
        
        /* Response Message */
        #responseMessage {
            text-align: center;
            margin-top: 15px;
            font-weight: 600;
            min-height: 24px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .highlight-card {
                flex: 0 0 100%;
            }
            
            .specialization-grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .header-subtitle {
                font-size: 1.2rem;
            }
            
            .fee-badge {
                font-size: 24px;
                padding: 12px 25px;
            }                                 
           
        }
        
        /* Breadcrumb */
        .breadcrumb {
            padding: 10px 0;
            font-size: 16px;
            color: #7f8c8d;
        }        
        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }
  