        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* ACCESSIBILITY */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: #064167;
            color: white;
            padding: 0.8rem 1.5rem;
            z-index: 10000;
            font-weight: 600;
            text-decoration: none;
            border-radius: 0 0 4px 0;
        }

        .skip-link:focus {
            top: 0;
        }

        *:focus-visible {
            outline: 3px solid #FF9933;
            outline-offset: 2px;
        }

        .a11y-toolbar {
            position: fixed;
            top: 10px;
            right: 80px;
            z-index: 10001;
            display: flex;
            gap: 0.3rem;
            background: rgba(255,255,255,0.95);
            padding: 0.4rem;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .a11y-toolbar.open {
            opacity: 1;
            pointer-events: auto;
        }

        .a11y-toolbar button {
            width: 36px;
            height: 36px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 700;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .a11y-toolbar button:hover {
            background: #064167;
            color: white;
            border-color: #064167;
        }

        .a11y-toolbar button.active {
            background: #064167;
            color: white;
            border-color: #064167;
        }

        .a11y-toggle {
            position: fixed;
            top: 10px;
            right: 80px;
            z-index: 10002;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #064167;
            color: white;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            transition: background 0.3s;
        }

        .a11y-toggle:hover {
            background: #0a5a8c;
        }

        body.high-contrast {
            filter: contrast(1.4);
        }

        body.large-text {
            font-size: 120%;
        }

        body.extra-large-text {
            font-size: 140%;
        }

        body.dyslexia-friendly {
            font-family: 'OpenDyslexic', 'Comic Sans MS', sans-serif;
            letter-spacing: 0.05em;
            word-spacing: 0.1em;
        }

        body.underline-links a {
            text-decoration: underline !important;
        }

        body.grayscale {
            filter: grayscale(1);
        }

        /* HEADER STYLES */
        header {
            background: white;
            border-bottom: 2px solid #800000;
            padding: 1rem 2rem;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .header-logo {
            height: 80px;
        }

        .header-logo img {
            height: 100%;
            width: auto;
        }

        .header-text {
            display: flex;
            flex-direction: column;
        }

        .header-text-main {
            color: #800000;
            font-weight: 700;
            font-size: 1.25rem;
            line-height: 1.2;
        }

        .header-text-sub {
            color: #800000;
            font-size: 0.85rem;
            line-height: 1.3;
            font-weight: 500;
        }

        .header-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .header-emblem {
            height: 70px;
            width: 70px;
        }

        .header-emblem img {
            height: 100%;
            width: auto;
        }

        .header-buttons {
            display: flex;
            gap: 0.8rem;
        }

        .btn-login {
            background: #a48cff;
            color: white;
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.3s;
        }

        .btn-login:hover {
            background: #8f76e6;
        }

        .btn-register {
            background: #ffb300;
            color: #333;
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.3s;
        }

        .btn-register:hover {
            background: #e6a000;
        }

        .btn-category {
            background: #FF9933;
            color: white;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.8rem;
            transition: background 0.3s;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .btn-category:hover {
            background: #e68a2e;
        }

        .header-right {
            text-align: right;
            font-size: 0.85rem;
        }

        .header-helpline {
            color: #800000;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

        .header-hours {
            color: #333;
            font-size: 0.8rem;
            margin-bottom: 0.5rem;
        }

        .header-phones {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .header-phones a {
            color: #800000;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .header-phones a:hover {
            color: #064167;
        }

        .country-dropdown {
            padding: 0.5rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 0.85rem;
        }

        /* GEO BANNER */
        #geo-banner {
            background: #800000;
            color: white;
            padding: 1rem 2rem;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 999;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }

        #geo-banner a {
            color: #ffb300;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
        }

        #geo-banner button {
            background: white;
            color: #800000;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
        }

        /* SOCIAL SIDEBAR */
        .social-sidebar {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 100;
            background: rgba(6, 65, 103, 0.9);
            padding: 1rem 0.7rem;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            animation: slideInLeft 0.6s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateY(-50%) translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(-50%) translateX(0);
            }
        }

        .social-sidebar a {
            width: 40px;
            height: 40px;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-sidebar a:hover {
            transform: scale(1.15);
        }

        /* ACTION BAR */
        .action-bar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            background: #e55a25;
            padding: 1rem;
            border-radius: 4px 0 0 4px;
            z-index: 100;
        }

        .action-bar a {
            position: relative;
            width: 50px;
            height: 50px;
            background: white;
            color: #e55a25;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .action-bar a::before {
            content: attr(data-label);
            position: absolute;
            right: 60px;
            background: #333;
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .action-bar a:hover::before {
            opacity: 1;
        }

        .action-bar a:hover {
            background: #f0f7ff;
            transform: scale(1.05);
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, #064167 0%, #0a5a8c 100%);
            color: white;
            padding: 5rem 2rem;
            text-align: center;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .btn-primary {
            background: #ff6b35;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s;
        }

        .btn-primary:hover {
            background: #e55a25;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid white;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: white;
            color: #064167;
        }

        .trust-bar {
            background: rgba(255, 255, 255, 0.15);
            padding: 1rem;
            border-radius: 4px;
            font-size: 0.95rem;
            margin-top: 2rem;
        }

        /* CONTAINER & SECTIONS */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            padding: 4rem 0;
            border-bottom: 1px solid #f0f0f0;
        }

        section h2 {
            font-size: 2.2rem;
            margin-bottom: 3rem;
            text-align: center;
            color: #064167;
        }

        /* HOW IT WORKS */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step {
            background: #f9f9f9;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            border-top: 4px solid #064167;
        }

        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: #064167;
            color: white;
            border-radius: 50%;
            line-height: 50px;
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .step-icon {
            font-size: 2rem;
            color: #064167;
            margin-bottom: 0.5rem;
        }

        .step h3 {
            color: #064167;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .step p {
            font-size: 0.9rem;
            color: #666;
        }

        /* COURSES SECTION */
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .course-card {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .course-card:hover {
            box-shadow: 0 4px 12px rgba(6, 65, 103, 0.15);
            border-color: #064167;
            transform: translateY(-2px);
        }

        .course-card h3 {
            color: #064167;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .course-card p {
            font-size: 0.9rem;
            color: #666;
        }

        /* WHY MAHARASHTRA */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .why-card {
            background: #f0f7ff;
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid #064167;
        }

        .why-card h3 {
            color: #064167;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .why-card p {
            color: #555;
            font-size: 0.95rem;
        }

        /* COUNTRIES GRID */
        .countries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .country-card {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: block;
        }

        .country-card:hover {
            border-color: #064167;
            background: #f9f9f9;
        }

        .country-flag {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        .country-card h3 {
            color: #064167;
            font-size: 1rem;
        }

        /* TESTIMONIALS */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: #f9f9f9;
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid #064167;
            display: flex;
            flex-direction: column;
        }

        .testimonial-photo {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            object-fit: cover;
            object-position: center top;
            margin: 0 auto 1rem;
            border: 3px solid #064167;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
            display: block;
        }

        .testimonial-card p {
            font-style: italic;
            color: #555;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .testimonial-author {
            font-weight: 600;
            color: #064167;
            text-align: center;
        }

        /* STATS */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: #064167;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            color: #666;
        }

        /* BLOG SECTION */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .blog-card {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .blog-card:hover {
            box-shadow: 0 4px 12px rgba(6, 65, 103, 0.15);
            transform: translateY(-2px);
        }

        .blog-header {
            background: linear-gradient(135deg, #064167 0%, #0a5a8c 100%);
            padding: 1.5rem;
            color: white;
        }

        .blog-category {
            display: inline-block;
            background: #800000;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .blog-title {
            font-size: 1.1rem;
            color: white;
            font-weight: 700;
            line-height: 1.4;
        }

        .blog-body {
            padding: 1.5rem;
        }

        .blog-excerpt {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .blog-footer {
            border-top: 1px solid #eee;
            padding-top: 1rem;
        }

        .blog-link {
            color: #064167;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .blog-link:hover {
            color: #800000;
        }

        /* FAQ SECTION */
        .faq-container {
            margin-top: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-item {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            background: #f0f7ff;
            cursor: pointer;
            user-select: none;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #e8f0fa;
        }

        .faq-question span:first-child {
            font-weight: 600;
            color: #064167;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: #064167;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 1.5rem;
            color: #555;
            line-height: 1.6;
            display: none;
            border-top: 1px solid #eee;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* FOOTER SOCIAL ICONS */
        .footer-social {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }

        .footer-social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-social-icon:hover {
            transform: translateY(-3px);
            opacity: 0.85;
        }

        /* COURSE MODAL */
        .course-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .course-modal-overlay.active {
            display: flex;
        }

        .course-modal {
            background: white;
            border-radius: 12px;
            max-width: 700px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .course-modal-header {
            background: linear-gradient(135deg, #064167 0%, #0a5a8c 100%);
            color: white;
            padding: 1.5rem 2rem;
            border-radius: 12px 12px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .course-modal-header h2 {
            color: white;
            font-size: 1.3rem;
            margin: 0;
            text-align: left;
        }

        .course-modal-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.3rem;
            line-height: 1;
        }

        .course-modal-tabs {
            display: flex;
            border-bottom: 2px solid #eee;
        }

        .course-modal-tab {
            flex: 1;
            padding: 1rem;
            text-align: center;
            cursor: pointer;
            font-weight: 600;
            color: #666;
            border: none;
            background: none;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .course-modal-tab.active {
            color: #064167;
            border-bottom: 3px solid #064167;
        }

        .course-modal-body {
            padding: 2rem;
        }

        .course-modal-body h3 {
            color: #064167;
            margin-bottom: 0.5rem;
        }

        .course-modal-body p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .course-modal-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
        }

        .course-modal-body th {
            background: #064167;
            color: white;
            padding: 0.7rem;
            text-align: left;
            font-size: 0.85rem;
        }

        .course-modal-body td {
            padding: 0.7rem;
            border-bottom: 1px solid #eee;
            font-size: 0.85rem;
            color: #555;
        }

        .course-modal-cta {
            display: block;
            text-align: center;
            background: #ff6b35;
            color: white;
            padding: 0.8rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1.5rem;
        }

        .course-modal-cta:hover {
            background: #e55a25;
        }

        /* DYNAMIC SECTIONS */
        .dynamic-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .dynamic-item {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .dynamic-item:hover {
            box-shadow: 0 2px 8px rgba(6, 65, 103, 0.1);
            border-color: #064167;
        }

        .dynamic-item-title {
            font-weight: 600;
            color: #333;
            font-size: 0.95rem;
            flex: 1;
        }

        .dynamic-item-date {
            color: #999;
            font-size: 0.8rem;
            white-space: nowrap;
            margin-left: 1rem;
        }

        .dynamic-item a {
            color: #064167;
            text-decoration: none;
            font-weight: 600;
            margin-left: 1rem;
            white-space: nowrap;
        }

        .dynamic-item a:hover {
            color: #800000;
        }

        /* FOOTER */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-col h3 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-col p, .footer-col a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-col a:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 0 2rem;
            border-top: 1px solid #333;
            padding-top: 2rem;
            text-align: center;
            color: #999;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .header-container {
                grid-template-columns: 1fr;
                gap: 1rem;
                text-align: center;
            }

            .header-right {
                text-align: center;
            }

            header {
                top: 100px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .courses-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .social-sidebar {
                display: none;
            }

            .action-bar {
                position: fixed;
                bottom: 0;
                right: 0;
                top: auto;
                transform: none;
                flex-direction: row;
                border-radius: 4px 4px 0 0;
            }
        }
