        :root {
            /* Colors - Darker, more sophisticated theme */
            --primary-color: #1a1d23;
            --secondary-color: #242831;
            --text-primary: #ffffff;
            --text-secondary: #b8bcc8;
            --accent-color: #6366f1;
            --accent-secondary: #8b5cf6;
            --border-color: #2d3139;
            --success-color: #10b981;
            --success-hover: #059669;
            
            /* Shadows - Enhanced for dark theme */
            --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
            --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            --gradient-accent: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
            --gradient-hero: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            
            /* Spacing */
            --section-padding: 80px 0;
            --section-padding-small: 60px 0;
            --container-padding: 0 20px;
            --gap-small: 1rem;
            --gap-medium: 2rem;
            --gap-large: 3rem;
            --gap-xlarge: 4rem;
            
            /* Typography */
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-size-base: 16px;
            --line-height-base: 1.6;
            --border-radius: 8px;
            --border-radius-large: 12px;
            --border-radius-xlarge: 16px;
            
            /* Transitions */
            --transition-fast: 0.3s ease;
            --transition-medium: 0.5s ease;
        }

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

        body {
            font-family: var(--font-family);
            line-height: var(--line-height-base);
            color: var(--text-primary);
            background-color: var(--primary-color);
            font-size: var(--font-size-base);
        }

        /* Universal Section Styling */
        section {
            padding: var(--section-padding);
            margin: 0;
        }

        /* Special cases for specific sections */
        .hero {
            padding: 120px 0 80px;
        }

        .free-guide {
            padding: var(--section-padding-small);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--container-padding);
        }

        /* Header */
        header {
            background-color: var(--primary-color);
            box-shadow: var(--shadow-light);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--gap-small) 0;
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
        }

        /* Navigation styles defined in Cross-Platform Navigation Enhancements section */

        .theme-toggle {
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--border-radius);
            transition: all var(--transition-fast);
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .theme-toggle:hover {
            background-color: var(--secondary-color);
            color: var(--accent-color);
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-text {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.2;
            white-space: nowrap;
        }

        .hero-text .subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.6;
            max-width: 800px;
            text-align: center;
            width: 100%;
        }

        .hero-image {
            margin-bottom: 2rem;
        }

        .profile-image {
            width: 400px;
            height: auto;
            border-radius: 50px;
            box-shadow: var(--shadow-medium);
            border: 4px solid var(--primary-color);
            object-fit: cover;
            object-position: 45% center;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn {
            padding: 12px 24px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 500;
            transition: all var(--transition-fast);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-primary);
            border: 2px solid var(--border-color);
        }

        .btn-secondary:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
        }

        /* Hero Stats */
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 1rem auto 2rem auto;
            max-width: 700px;
            flex-wrap: nowrap;
            width: 100%;
        }

        .hero-stat-item {
            text-align: center;
            padding: 1.2rem 0.8rem;
            background-color: var(--secondary-color);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex: 1;
            min-width: 140px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            max-width: 160px;
            word-wrap: break-word;
            hyphens: auto;
        }

        .hero-stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .hero-stat-item:nth-child(2) {
            min-width: 180px;
        }

        .hero-stat-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .hero-stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            display: block;
            line-height: 1.2;
        }

        .hero-stat-label {
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            line-height: 1.3;
            white-space: nowrap;
        }

        /* About Section */
        .about {
            background-color: var(--secondary-color);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: var(--gap-large);
            color: var(--text-primary);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            margin-top: -2rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-intro {
            text-align: center;
            margin-bottom: 2rem;
        }

        .about-intro h3 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }

        .about-intro p {
            font-size: 1.2rem;
            line-height: 1.7;
            color: var(--text-secondary);
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 3rem;
            align-items: start;
            margin-bottom: 3rem;
        }

        .about-image {
            text-align: center;
            margin-top: 3.5rem;
        }

        .about-profile {
            width: 280px;
            height: auto;
            border-radius: 20px;
            box-shadow: var(--shadow-medium);
            border: 4px solid var(--primary-color);
        }

        .about-text h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .about-text h4 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 2rem 0 1.5rem 0;
            text-align: center;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .institutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .institution-category h5 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.8rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
            text-align: center;
        }

        .institution-category ul {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .institution-category li {
            color: var(--text-secondary);
            margin-bottom: 0.4rem;
            margin-left: 0.5rem;
            font-size: 0.95rem;
            padding-left: 1rem;
            position: relative;
            text-align: left;
        }

        .institution-category li:before {
            content: "•";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .institution-category a {
            color: var(--text-secondary);
            text-decoration: underline;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .institution-category a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        /* Ensure left alignment across all responsive breakpoints and themes */
        .institution-category ul,
        .institution-category li,
        .institution-category a {
            text-align: left !important;
        }

        /* Override any inherited center alignment in responsive breakpoints */
        @media (max-width: 1024px) {
            .institution-category ul,
            .institution-category li,
            .institution-category a {
                text-align: left !important;
            }
        }

        @media (max-width: 768px) {
            .institution-category ul,
            .institution-category li,
            .institution-category a {
                text-align: left !important;
            }
        }

        @media (max-width: 480px) {
            .institution-category ul,
            .institution-category li,
            .institution-category a {
                text-align: left !important;
            }
        }

        /* Ensure left alignment in both light and dark themes */
        [data-theme="light"] .institution-category ul,
        [data-theme="light"] .institution-category li,
        [data-theme="light"] .institution-category a,
        [data-theme="dark"] .institution-category ul,
        [data-theme="dark"] .institution-category li,
        [data-theme="dark"] .institution-category a {
            text-align: left !important;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background-color: var(--primary-color);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .stat-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            display: block;
        }

        .stat-label {
            color: var(--text-secondary);
            font-weight: 500;
            margin-top: 0.5rem;
        }

        /* Services Section */
        .services {
            background-color: var(--primary-color);
        }

        .services-description {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 1400px;
            margin: 0 auto 2.5rem auto;
            line-height: 1.7;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .service-card {
            padding: 2rem;
            background-color: var(--secondary-color);
            border-radius: 12px;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            color: white;
            font-size: 1.8rem;
        }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--text-primary);
            text-align: left;
        }

        .service-card p {
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 1.2rem;
            text-align: left;
            font-size: 0.95rem;
        }

        .service-features {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .service-features li {
            color: var(--text-secondary);
            margin-bottom: 0.6rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.4;
            font-size: 0.9rem;
        }

        .service-features li:before {
            content: "✓";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .services-cta {
            text-align: center;
            margin-top: 2.5rem;
        }

        .btn-large {
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Contact Section */
        .contact {
            background-color: var(--secondary-color);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-info {
            display: flex;
            gap: 1rem;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .contact-details h4 {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .contact-details p {
            color: var(--text-secondary);
        }

        .contact-form {
            background-color: var(--primary-color);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        footer {
            background-color: var(--text-primary);
            color: var(--primary-color);
            text-align: center;
            padding: 2rem 0;
        }

        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            height: 100%;
            min-height: 4rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: var(--primary-color);
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent-color);
        }

        /* Benefits Section */
        .benefits {
            background-color: var(--primary-color);
        }

        .benefits-description {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 1400px;
            margin: 0 auto 2.5rem auto;
            line-height: 1.7;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .benefit-card {
            padding: 2rem;
            background-color: var(--secondary-color);
            border-radius: 12px;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            color: white;
            font-size: 1.8rem;
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--text-primary);
            text-align: left;
        }

        .benefit-card p {
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 1.2rem;
            text-align: left;
            font-size: 0.95rem;
        }

        .benefit-features {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-top: 1.2rem;
        }

        .benefit-features li {
            color: var(--text-secondary);
            margin-bottom: 0.6rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.4;
            font-size: 0.9rem;
        }

        .benefit-features li:before {
            content: "✓";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .benefits-cta {
            text-align: center;
            margin-top: 3rem;
        }

        /* Academic degrees Section */
        .degrees-section {
            margin-top: 2rem;
            padding: 2rem;
            background-color: var(--secondary-color);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            text-align: center;
        }

        .degrees-section h4 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2rem;
            text-align: center;
        }

        .degrees-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .degree-card {
            padding: 2rem;
            background-color: var(--primary-color);
            border-radius: 12px;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-color);
        }

        .degree-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .degree-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .degree-card h5 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            text-align: center;
            letter-spacing: 1px;
        }

        .degree-card .ranking {
            font-size: 1rem;
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .degree-card .ranking a {
            color: var(--accent-color);
            text-decoration: underline;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .degree-card .ranking a:hover {
            color: var(--text-primary);
            text-decoration: underline;
        }

        .degree-card .degree-info {
            margin-top: 1rem;
        }

        .degree-card .degree-info p {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
            line-height: 1.5;
            text-align: left;
        }

        .degree-card .degree-info a {
            color: var(--text-secondary);
            text-decoration: underline;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .degree-card .degree-info a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .degree-list {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .degree-list li {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
            line-height: 1.5;
            text-align: left;
            padding-left: 1.5rem;
            position: relative;
        }

        .degree-list li:before {
            content: "•";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .degree-list a {
            color: var(--text-secondary);
            text-decoration: underline;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .degree-list a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .degrees-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .degree-card {
                padding: 1.5rem;
            }
        }

        .key-insights {
            margin-top: 2rem;
            padding: 2rem;
            background-color: var(--secondary-color);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
        }

        .key-insights h3 {
            text-align: center;
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2rem;
        }

        .insights-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .insight-card {
            padding: 2rem;
            background-color: var(--primary-color);
            border-radius: 12px;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }

        .insight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .insight-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .insight-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            color: white;
            font-size: 1.8rem;
        }

        .insight-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.8rem;
            text-align: left;
        }

        .insight-card p {
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 0.8rem;
            text-align: left;
            font-size: 0.95rem;
        }

        .insight-features {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .insight-features li {
            color: var(--text-secondary);
            margin-bottom: 0.6rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.4;
            font-size: 0.95rem;
        }

        .insight-features li:before {
            content: "✓";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .insights-cta {
            text-align: center;
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        /* Challenges Section */
        .challenges {
            background-color: var(--secondary-color);
        }

        .challenges-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .challenge-card {
            padding: 2rem;
            background-color: var(--primary-color);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .challenge-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b 0%, #ffa726 100%);
        }

        .challenge-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .challenge-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.5rem;
        }

        .challenge-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .challenge-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .challenge-situation,
        .challenge-reason {
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid transparent;
        }

        .challenge-situation {
            background-color: rgba(99, 102, 241, 0.1);
            border-left-color: var(--accent-color);
        }

        .challenge-reason {
            background-color: rgba(255, 107, 107, 0.1);
            border-left-color: #ff6b6b;
        }

        .challenge-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent-color);
            display: block;
            margin-bottom: 0.5rem;
            letter-spacing: 0.5px;
        }

        .challenge-reason .challenge-label {
            color: #ff6b6b;
        }

        .challenge-details p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }

        .challenges-cta {
            text-align: center;
            margin-top: 3rem;
        }

        /* Section Separators */
        .section-separator-simple {
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, var(--border-color) 15%, var(--accent-color) 50%, var(--border-color) 85%, transparent 100%);
            margin: 4rem 0;
            position: relative;
        }

        .section-separator-simple::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            background: var(--accent-color);
            border-radius: 50%;
            box-shadow: 0 0 0 4px var(--primary-color);
        }

        /* Responsive Design & Cross-Platform Optimizations */
        
        /* Tablet Styles */
        @media (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-text h1 {
                font-size: 2.4rem;
                white-space: normal;
            }
            
            .profile-image {
                width: 320px;
            }
            
            .about-content {
                grid-template-columns: 250px 1fr;
                gap: 2rem;
            }
            
            .institutions-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .insights-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            /* Mobile Navigation */
            .mobile-menu-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: var(--primary-color);
                flex-direction: column;
                justify-content: flex-start;
                align-items: stretch;
                padding: 80px 20px 20px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                z-index: 1000;
                gap: 0;
                overflow-y: auto;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 0;
                border-bottom: 1px solid var(--border-color);
            }
            
            .nav-links li:last-child {
                border-bottom: none;
                margin-top: 20px;
                padding-top: 20px;
                border-top: 1px solid var(--border-color);
            }
            
            .nav-links a {
                padding: 16px 12px;
                font-size: 1.1rem;
                font-weight: 500;
                width: 100%;
                text-align: left;
                border-radius: 8px;
                margin: 4px 0;
            }
            
            .nav-links a:hover,
            .nav-links a:focus {
                background-color: var(--secondary-color);
                color: var(--accent-color);
            }
            
            .theme-toggle {
                width: 100%;
                justify-content: flex-start;
                padding: 16px 12px;
                font-size: 1.1rem;
                border-radius: 8px;
                margin: 4px 0;
            }
            
            /* Mobile Overlay */
            .nav-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .nav-overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            /* Prevent body scroll when menu is open */
            body.menu-open {
                overflow: hidden;
            }
            
            .hero {
                padding: 100px 0 60px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .profile-image {
                width: 280px;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 1rem;
            }
            
            .hero-stat-item {
                min-width: 120px;
                padding: 1rem 0.8rem;
            }
            
            .hero-stat-item:nth-child(2) {
                min-width: 120px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            
            .about-image {
                margin-top: 0;
            }
            
            .institutions-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
                        .insights-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .insights-cta {
                flex-direction: column;
                align-items: center;
            }
            
            
            .free-guide-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .phone-input-group {
                flex-direction: column;
                gap: 0.8rem;
            }
            
            .country-code-select {
                min-width: 100%;
            }
            
            .consultation-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .consultation-card.featured {
                transform: none;
            }
            
            .consultation-card.featured:hover {
                transform: translateY(-5px);
            }
            
            .consultation-features {
                gap: 1.5rem;
            }
            
            .language-options {
                gap: 1rem;
            }
        }
        
        /* Mobile Portrait - 1 testimonial per row */
        @media (max-width: 768px) and (orientation: portrait) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            /* 2x2 Hero Stats Layout for Portrait Mobile */
            .hero-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                max-width: 400px;
                margin: 1rem auto 2rem auto;
            }
            
            .hero-stat-item {
                min-width: auto;
                padding: 1rem 0.8rem;
            }
            
            /* 2x2 Button Layout for Portrait Mobile */
            .cta-buttons {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .cta-buttons .btn {
                padding: 14px 16px;
                font-size: 0.9rem;
                text-align: center;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }
        
        /* Mobile Landscape - 2 testimonials per row */
        @media (max-width: 768px) and (orientation: landscape) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        
        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            
            .hero-text h1 {
                font-size: 1.8rem;
            }
            
            .profile-image {
                width: 240px;
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }
            
            .hero-stat-item {
                min-width: auto;
                padding: 0.8rem 0.5rem;
            }
            
            .hero-stat-number {
                font-size: 1.2rem;
            }
            
            .hero-stat-label {
                font-size: 0.8rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .service-card,
            .benefit-card,
            .insight-card {
                padding: 1.5rem;
            }
            
            .challenges-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        
        /* Cross-Platform Optimizations */
        
        /* iOS Safari specific fixes */
        @supports (-webkit-touch-callout: none) {
            .btn {
                -webkit-appearance: none;
                border-radius: 6px;
                -webkit-tap-highlight-color: transparent;
            }
            
            input, textarea, select {
                -webkit-appearance: none;
                border-radius: 8px;
                -webkit-tap-highlight-color: transparent;
            }
            
            /* Fix iOS Safari viewport issues */
            body {
                -webkit-text-size-adjust: 100%;
            }
            
            /* Fix iOS Safari sticky positioning */
            header {
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
            }
        }
        
        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .profile-image,
            .about-profile {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }
        
        /* Reduced motion preferences */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* Dark mode support - REMOVED automatic detection */
        /* @media (prefers-color-scheme: dark) {
            :root:not([data-theme]) {
                --primary-color: #0f1114;
                --secondary-color: #1a1d23;
                --text-primary: #ffffff;
                --text-secondary: #9ca3af;
                --border-color: #1f2937;
                --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.5);
                --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.6);
            }
        } */
        
        /* Manual dark mode - DEFAULT PRIMARY THEME */
        :root {
            --primary-color: #0f1114;
            --secondary-color: #1a1d23;
            --text-primary: #ffffff;
            --text-secondary: #9ca3af;
            --border-color: #1f2937;
            --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.5);
            --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        
        [data-theme="dark"] {
            --primary-color: #0f1114;
            --secondary-color: #1a1d23;
            --text-primary: #ffffff;
            --text-secondary: #9ca3af;
            --border-color: #1f2937;
            --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.5);
            --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        
        /* Manual light mode - OPTIONAL SECONDARY THEME */
        [data-theme="light"] {
            --primary-color: #ffffff;
            --secondary-color: #f8f9fa;
            --text-primary: #1a1a1a;
            --text-secondary: #4a4a4a;
            --border-color: #e9ecef;
            --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Print styles */
        @media print {
            header {
                position: static;
            }
            
            .hero-stats,
            .cta-buttons,
            .contact-form,
            .social-links {
                display: none;
            }
            
            .section-title {
                page-break-after: avoid;
            }
            
            .service-card,
            .benefit-card,
            .insight-card {
                page-break-inside: avoid;
            }
        }

        /* Additional Cross-Platform Optimizations */
        
        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .btn {
                min-height: 44px;
                min-width: 44px;
                padding: 12px 24px;
            }
            
            .nav-links a {
                padding: 12px 8px;
            }
            
            .theme-toggle {
                min-height: 44px;
                min-width: 44px;
            }
        }
        
        /* Safe area support for notched devices */
        @supports (padding: max(0px)) {
            .container {
                padding-left: max(20px, env(safe-area-inset-left));
                padding-right: max(20px, env(safe-area-inset-right));
            }
            
            header {
                padding-top: env(safe-area-inset-top);
            }
            
            footer {
                padding-bottom: env(safe-area-inset-bottom);
            }
        }
        
        /* Firefox specific fixes */
        @-moz-document url-prefix() {
            button::-moz-focus-inner,
            input::-moz-focus-inner {
                border: 0;
                padding: 0;
            }
        }
        
        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .btn {
                border: 2px solid currentColor;
            }
            
            .service-card,
            .benefit-card,
            .testimonial-card,
            .consultation-card {
                border: 2px solid var(--border-color);
            }
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--primary-color);
        }

        .testimonials-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            margin-top: -1rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background-color: var(--secondary-color);
            border-radius: 16px;
            padding: 2.5rem;
            color: var(--text-primary);
            position: relative;
            box-shadow: var(--shadow-light);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color);
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .testimonial-quote {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .testimonial-text {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            font-style: italic;
        }

        .testimonial-text:last-of-type {
            margin-bottom: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: auto;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid var(--accent-color);
            box-shadow: var(--shadow-light);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            color: var(--text-primary);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .author-info h4 a {
            color: var(--text-secondary);
            text-decoration: underline;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .author-info h4 a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .author-info p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin: 0;
            font-weight: 500;
        }

        .testimonials-cta {
            text-align: center;
            margin-top: 3rem;
        }

        /* Free Guide Section */
        .free-guide {
            padding: var(--section-padding-small);
            background: var(--gradient-primary);
            color: white;
        }

        .free-guide .section-title {
            margin-bottom: 1.5rem;
        }

        .free-guide-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .free-guide-text h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            line-height: 1.3;
            color: white;
        }

        .free-guide-description {
            font-size: 0.95rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        .free-guide-benefits {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .free-guide-benefits li {
            font-size: 0.9rem;
            margin-bottom: 0.6rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.4;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .form-container {
            background: white;
            border-radius: 12px;
                padding: 1.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .form-container h3 {
            color: var(--text-primary);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-align: center;
        }

        .guide-form .form-group {
            margin-bottom: 1rem;
        }

        .guide-form label {
            display: block;
            margin-bottom: 0.4rem;
            font-weight: 500;
            color: var(--text-primary);
            font-size: 0.85rem;
        }

        .guide-form input {
            width: 100%;
            padding: 10px 12px;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            font-family: inherit;
            font-size: 0.9rem;
            transition: border-color 0.3s ease;
            background-color: #f8f9fa;
            color: #2c3e50; /* Explicit dark text color for light background */
        }

        .guide-form input:focus {
            outline: none;
            border-color: var(--accent-color);
            background-color: white;
            color: #2c3e50; /* Ensure text stays dark on white background */
        }

        .guide-form input::placeholder {
            color: #999;
        }

        .phone-input-group {
            display: flex;
            gap: 0.5rem;
        }

        .country-code-select {
            flex: 0 0 auto;
            min-width: 120px;
            padding: 10px 6px;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            font-family: inherit;
            font-size: 0.85rem;
            background-color: #f8f9fa;
            transition: border-color 0.3s ease;
            color: #2c3e50; /* Explicit dark text color for light background */
        }

        .country-code-select:focus {
            outline: none;
            border-color: var(--accent-color);
            background-color: white;
            color: #2c3e50; /* Ensure text stays dark on white background */
        }

        .phone-input-group input {
            flex: 1;
            margin: 0;
        }

        .guide-form .btn-large {
            width: 100%;
            margin-bottom: 0.8rem;
            font-size: 1rem;
            padding: 12px;
        }

        .guide-form .btn-large:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        #downloadSection {
            margin-top: 0.8rem;
            padding: 0.8rem;
            background-color: rgba(99, 102, 241, 0.1);
            border-radius: 6px;
            border: 2px solid var(--accent-color);
            text-align: center;
        }

        #downloadSection .btn-large {
            background-color: #28a745;
            margin-bottom: 0;
        }

        #downloadSection .btn-large:hover {
            background-color: #218838;
        }

        .form-disclaimer {
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.3;
            margin: 0;
        }

        .free-guide-cta {
            text-align: center;
            margin-top: 1.5rem;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Specific positioning for Shyam's photo to focus on face */
        .author-avatar img[src="Shyam.jpg"] {
            object-position: center 20%;
        }

        .author-info h4 {
            color: var(--text-primary);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .form-disclaimer {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.4;
            margin: 0;
        }

        .free-guide-cta {
            text-align: center;
            margin-top: 2rem;
        }

        .free-guide-cta .btn {
            background: white;
            color: var(--accent-color);
            border: 2px solid white;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .free-guide-cta .btn:hover {
            background: var(--accent-color);
            color: white;
            border-color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Contact Section */
        .contact {
            background-color: var(--secondary-color);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-info {
            display: flex;
            gap: 1rem;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .contact-details h4 {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .contact-details p {
            color: var(--text-secondary);
        }

        .contact-form {
            background-color: var(--primary-color);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Book a Consultation Section */
        .consultation-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 3rem 0;
            align-items: stretch;
        }

        .consultation-card {
            background-color: var(--primary-color);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: var(--shadow-light);
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 480px;
            height: 100%;
        }

        .consultation-card.featured {
            border-color: var(--accent-color);
            border-width: 3px;
            /* Removed transform: scale(1.05) to maintain same size */
        }

        .consultation-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .consultation-card.featured:hover {
            transform: translateY(-5px);
            /* Removed scale to maintain consistent hover behavior */
        }

        .session-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .consultation-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 1.5rem auto 1.5rem auto;
            font-size: 2rem;
            color: white;
        }

        .consultation-card.featured .consultation-icon {
            margin-top: 1.5rem;
            /* Made consistent with other cards */
        }

        .consultation-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .consultation-duration {
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

        .consultation-description {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: auto;
            flex-grow: 1;
            text-align: left;
        }

        .consultation-button-container {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .btn-consultation {
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            width: 100%;
            max-width: 250px;
        }

        .btn-consultation:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
        }

        .consultation-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 3rem 0 2rem 0;
            flex-wrap: wrap;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .feature-icon {
            font-size: 1.2rem;
        }

        .language-options {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .language-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .flag {
            font-size: 1.2rem;
        }

        /* Recent News & Insights Section */
        .news-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .news-card {
            background-color: var(--primary-color);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: var(--shadow-light);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .news-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .news-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }

        .news-meta {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .news-date {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .news-source {
            font-size: 0.8rem;
            color: var(--accent-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .news-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .news-card h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .news-card h3 a:hover {
            color: var(--accent-color);
        }

        .news-excerpt {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: auto;
            flex-grow: 1;
        }

        .news-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }

        .news-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .news-tag {
            background-color: var(--secondary-color);
            color: var(--text-secondary);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .news-link {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .news-link:hover {
            transform: translateX(3px);
        }

        .news-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .news-link:hover::after {
            transform: translateX(3px);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--border-radius);
            transition: all var(--transition-fast);
            position: relative;
            z-index: 1001;
            /* Enhanced touch target for better mobile interaction */
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .mobile-menu-toggle:hover {
            background-color: var(--secondary-color);
        }

        .mobile-menu-toggle:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }

        /* Enhanced hamburger animation */
        .hamburger-line {
            width: 24px;
            height: 3px;
            background-color: var(--text-primary);
            margin: 2px 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
            transform-origin: center;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Enhanced Cross-Platform Navigation */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem; /* Reduced from var(--gap-medium) which is 2rem */
            margin: 0;
            padding: 0;
            /* Improved performance with hardware acceleration */
            will-change: transform;
            backface-visibility: hidden;
            /* Cross-platform font rendering */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            /* Enhanced browser compatibility */
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 400;
            transition: all var(--transition-fast);
            padding: 8px 10px; /* Reduced horizontal padding from 12px to 10px */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-radius: 6px;
            /* Enhanced touch targets for all platforms */
            min-height: 44px;
            min-width: 44px;
            font-size: 0.9rem; /* Reduced font size for better fit */
            /* Cross-platform text rendering */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            /* Enhanced user interaction prevention */
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            /* Cross-platform touch optimizations */
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            touch-action: manipulation;
            /* Prevent text wrapping and overflow */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            /* Enhanced browser compatibility */
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            /* Better performance across platforms */
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            /* Accessibility enhancements */
            outline-offset: 2px;
            /* Cross-platform cursor consistency */
            cursor: pointer;
        }

        .nav-links a:hover,
        .nav-links a:focus {
            color: var(--accent-color);
            background-color: rgba(99, 102, 241, 0.1);
            outline: none;
            transform: translateY(-1px) translateZ(0);
            /* Enhanced cross-platform hover effects */
            -webkit-transform: translateY(-1px) translateZ(0);
            /* Better shadow for depth perception */
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
        }

        /* Enhanced focus states for accessibility */
        .nav-links a:focus-visible {
            box-shadow: 0 0 0 2px var(--accent-color), 0 0 0 4px rgba(99, 102, 241, 0.2);
            outline: 2px solid transparent;
        }

        /* Cross-platform active states */
        .nav-links a:active {
            transform: translateY(0) translateZ(0);
            -webkit-transform: translateY(0) translateZ(0);
            transition-duration: 0.1s;
        }

        /* Enhanced active link indicator */
        .nav-links a.active {
            color: var(--accent-color);
            background-color: rgba(99, 102, 241, 0.1);
            font-weight: 500;
            /* Enhanced visual feedback */
            box-shadow: 0 1px 3px rgba(99, 102, 241, 0.2);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background-color: var(--accent-color);
            border-radius: 1px;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                width: 0;
                opacity: 0;
                transform: translateX(-50%) scaleX(0);
            }
            to {
                width: 20px;
                opacity: 1;
                transform: translateX(-50%) scaleX(1);
            }
        }

        /* Enhanced theme toggle with cross-platform support */
        .theme-toggle {
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--border-radius);
            transition: all var(--transition-fast);
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            min-width: 44px;
            /* Cross-platform touch optimizations */
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            touch-action: manipulation;
            /* Enhanced browser compatibility */
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            /* Better performance */
            will-change: transform, background-color;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            /* Accessibility */
            outline-offset: 2px;
        }

        .theme-toggle:hover {
            background-color: var(--secondary-color);
            color: var(--accent-color);
            transform: scale(1.05) translateZ(0);
            -webkit-transform: scale(1.05) translateZ(0);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .theme-toggle:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }

        .theme-toggle:focus-visible {
            box-shadow: 0 0 0 2px var(--accent-color), 0 0 0 4px rgba(99, 102, 241, 0.2);
            outline: 2px solid transparent;
        }

        .theme-toggle:active {
            transform: scale(0.95) translateZ(0);
            -webkit-transform: scale(0.95) translateZ(0);
            transition-duration: 0.1s;
        }

        /* Enhanced responsive breakpoints for one-line navigation */
        @media (max-width: 1200px) {
            .nav-links {
                gap: 1.2rem;
            }
            
            .nav-links a {
                padding: 6px 8px;
                font-size: 0.85rem;
            }
            
            .logo {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 1rem;
            }
            
            .nav-links a {
                padding: 6px 6px;
                font-size: 0.8rem;
            }
            
            .logo {
                font-size: 1rem;
            }
            
            .theme-toggle {
                font-size: 1rem;
                padding: 6px;
                min-width: 40px;
                min-height: 40px;
            }
        }

        @media (max-width: 900px) {
            .nav-links {
                gap: 0.8rem;
            }
            
            .nav-links a {
                padding: 4px 6px;
                font-size: 0.75rem;
            }
            
            .logo {
                font-size: 0.95rem;
            }
        }

        /* Enhanced Cross-Platform Mobile Navigation */
        @media (max-width: 1024px) {
            .mobile-menu-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: min(320px, 85vw);
                height: 100vh;
                background-color: var(--primary-color);
                flex-direction: column;
                justify-content: flex-start;
                align-items: stretch;
                padding: 80px 20px 20px;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
                gap: 0;
                overflow-y: auto;
                /* Enhanced cross-platform scrolling */
                -webkit-overflow-scrolling: touch;
                overscroll-behavior: contain;
                /* Better backdrop with cross-platform support */
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                /* Safe area support for notched devices */
                padding-top: max(80px, env(safe-area-inset-top, 80px));
                padding-bottom: max(20px, env(safe-area-inset-bottom, 20px));
                /* Enhanced browser compatibility */
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 0;
                border-bottom: 1px solid var(--border-color);
                /* Enhanced touch targets for all platforms */
                min-height: 56px;
                display: flex;
                align-items: center;
            }
            
            .nav-links li:last-child {
                border-bottom: none;
                margin-top: 20px;
                padding-top: 20px;
                border-top: 1px solid var(--border-color);
            }
            
            .nav-links a {
                padding: 16px 12px;
                font-size: 1.1rem;
                font-weight: 500;
                width: 100%;
                text-align: left;
                border-radius: 8px;
                margin: 4px 0;
                min-height: 48px;
                min-width: auto;
                justify-content: flex-start;
                /* Enhanced visual feedback with cross-platform support */
                transition: all 0.2s ease;
                /* Reset mobile-specific properties */
                overflow: visible;
                text-overflow: initial;
                white-space: normal;
            }
            
            .nav-links a:hover,
            .nav-links a:focus {
                background-color: var(--secondary-color);
                color: var(--accent-color);
                transform: translateX(4px) translateZ(0);
                -webkit-transform: translateX(4px) translateZ(0);
                box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
            }
            
            .nav-links a.active {
                background-color: rgba(99, 102, 241, 0.1);
                border-left: 4px solid var(--accent-color);
                padding-left: 16px;
            }
            
            .nav-links a.active::after {
                display: none;
            }
            
            .theme-toggle {
                width: 100%;
                justify-content: flex-start;
                padding: 16px 12px;
                font-size: 1.1rem;
                border-radius: 8px;
                margin: 4px 0;
                text-align: left;
                min-width: auto;
            }
            
            .theme-toggle::before {
                content: 'Theme: ';
                margin-right: 8px;
                font-size: 1rem;
            }
        }

        /* Enhanced Mobile Overlay with Cross-Platform Support */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            /* Enhanced backdrop with cross-platform support */
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
            /* Better performance */
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
        
        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Enhanced body scroll prevention with cross-platform support */
        body.menu-open {
            overflow: hidden;
            /* Prevent bounce scrolling on iOS */
            position: fixed;
            width: 100%;
            /* Maintain scroll position */
            top: calc(-1 * var(--scroll-y, 0px));
            /* Enhanced iOS support */
            -webkit-overflow-scrolling: auto;
        }

        /* Enhanced small mobile navigation */
        @media (max-width: 480px) {
            .nav-links {
                width: 100vw;
                right: -100vw;
                padding: 70px 15px 15px;
            }
            
            .nav-links a {
                font-size: 1rem;
                padding: 14px 10px;
            }
            
            .mobile-menu-toggle {
                width: 40px;
                height: 40px;
            }
            
            .hamburger-line {
                width: 20px;
                height: 2px;
            }
        }

        /* Cross-Platform Performance Optimizations */
        @media (prefers-reduced-motion: reduce) {
            .nav-links,
            .nav-overlay,
            .mobile-menu-toggle,
            .hamburger-line,
            .nav-links a,
            .theme-toggle {
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
                transform: none !important;
                -webkit-transform: none !important;
            }
        }

        /* Enhanced high contrast support */
        @media (prefers-contrast: high) {
            .nav-links a {
                border: 1px solid transparent;
            }
            
            .nav-links a:hover,
            .nav-links a:focus,
            .nav-links a.active {
                border-color: currentColor;
                background-color: var(--accent-color);
                color: var(--primary-color);
            }
            
            .mobile-menu-toggle {
                border: 1px solid var(--text-primary);
            }
            
            .theme-toggle {
                border: 1px solid var(--text-secondary);
            }
        }

        /* Enhanced dark mode navigation with cross-platform support */
        @media (prefers-color-scheme: dark) {
            :root:not([data-theme]) .nav-links {
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
            }
        }
        
        [data-theme="dark"] .nav-links {
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
        }

        /* Enhanced landscape mobile support */
        @media (max-height: 500px) and (orientation: landscape) {
            .nav-links {
                padding: 60px 15px 15px;
                font-size: 0.9rem;
            }
            
            .nav-links a {
                padding: 10px 12px;
                min-height: 40px;
            }
            
            .nav-links li {
                min-height: 44px;
            }
        }

        /* Enhanced focus management with cross-platform support */
        .nav-links a:focus-visible,
        .theme-toggle:focus-visible,
        .mobile-menu-toggle:focus-visible {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
            z-index: 1;
            /* Enhanced visibility */
            box-shadow: 0 0 0 2px var(--accent-color), 0 0 0 4px rgba(99, 102, 241, 0.2);
        }

        /* Enhanced touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .nav-links a {
                min-height: 48px;
                padding: 12px 16px;
            }
            
            .theme-toggle {
                min-height: 48px;
                min-width: 48px;
                padding: 12px;
            }
            
            .mobile-menu-toggle {
                min-height: 48px;
                min-width: 48px;
            }
            
            /* Remove hover effects on touch devices */
            .nav-links a:hover {
                transform: none !important;
                -webkit-transform: none !important;
                background-color: transparent;
            }
            
            .theme-toggle:hover {
                transform: none !important;
                -webkit-transform: none !important;
                background-color: transparent;
            }
        }

        /* Enhanced RTL support */
        [dir="rtl"] .nav-links {
            right: auto;
            left: -100%;
        }
        
        [dir="rtl"] .nav-links.active {
            left: 0;
        }
        
        [dir="rtl"] .nav-links {
            box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
        }

        /* Enhanced print styles */
        @media print {
            .mobile-menu-toggle,
            .nav-overlay,
            .theme-toggle {
                display: none !important;
            }
            
            .nav-links {
                position: static !important;
                display: flex !important;
                flex-direction: row !important;
                background: none !important;
                box-shadow: none !important;
                padding: 0 !important;
                height: auto !important;
                width: auto !important;
                gap: 1rem !important;
            }
            
            .nav-links a {
                padding: 4px 8px !important;
                font-size: 0.8rem !important;
                min-height: auto !important;
                min-width: auto !important;
            }
        }

        /* Mobile Landscape - 2 testimonials per row */
        @media (max-width: 768px) and (orientation: landscape) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        
        /* Mobile Portrait - 1 testimonial per row */
        @media (max-width: 768px) and (orientation: portrait) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            /* 2x2 Hero Stats Layout for Portrait Mobile */
            .hero-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                max-width: 400px;
                margin: 1rem auto 2rem auto;
            }
            
            .hero-stat-item {
                min-width: auto;
                padding: 1rem 0.8rem;
            }
            
            /* 2x2 Button Layout for Portrait Mobile */
            .cta-buttons {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .cta-buttons .btn {
                padding: 14px 16px;
                font-size: 0.9rem;
                text-align: center;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }
        
        /* Tablet Portrait - 2x2 Button Layout */
        @media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            /* 2x2 Hero Stats Layout for Portrait Tablet */
            .hero-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                max-width: 500px;
                margin: 1rem auto 2rem auto;
            }
            
            .hero-stat-item {
                min-width: auto;
                padding: 1.2rem 1rem;
            }
            
            .cta-buttons {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .cta-buttons .btn {
                padding: 16px 20px;
                font-size: 1rem;
                text-align: center;
            }
        }
        
        /* Tablet Landscape - 2 testimonials per row */
        @media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        
        /* Consultation Cards - Mobile Portrait: 1 card per row */
        @media (max-width: 768px) and (orientation: portrait) {
            .consultation-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        
        /* Consultation Cards - Mobile Landscape: default layout */
        @media (max-width: 768px) and (orientation: landscape) {
            .consultation-cards {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
        }
        
        /* Consultation Cards - Tablet Portrait: 1 card per row */
        @media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
            .consultation-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        
        /* Consultation Cards - Tablet Landscape: default layout */
        @media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
            .consultation-cards {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
        }

        /* News Cards - Responsive Design */
        @media (max-width: 768px) {
            .news-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .news-card {
                padding: 1.5rem;
            }
            
            .news-card h3 {
                font-size: 1.2rem;
            }
        }
        
        @media (min-width: 769px) and (max-width: 1024px) {
            .news-cards {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        .insight-features a {
            color: var(--accent-color);
            text-decoration: underline;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .insight-features a:hover {
            color: var(--text-primary);
            text-decoration: underline;
        }

        .benefit-features {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-top: 1.2rem;
        }

        .benefit-features li {
            color: var(--text-secondary);
            margin-bottom: 0.6rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.4;
            font-size: 0.9rem;
        }

        .benefit-features li:before {
            content: "✓";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
