
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif !important;
        }

        body {
            font-family: 'Montserrat', sans-serif !important;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        .hero-banner {
              background: url('Earth Image.jpeg') center/cover no-repeat;
            min-height: 300px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
              content: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(0, 8, 47, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 29, 88, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 241, 156, 0.2) 0%, transparent 50%);
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            color: #FFFFFF;
            z-index: 2;
            position: relative;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
            color: #FFFFFF;
        }

        .hero-content p {
            font-size: 1.2rem;
            text-align: center;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            color: #FFFFFF;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .assessment-intro {
            background: white;
            padding: 4rem 0;
            text-align: center;
        }

        .assessment-intro h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #00082F;
        }

        .assessment-intro p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            color: #666;
        }

        .user-form {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            margin: 3rem 0;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #1a1a2e;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: #f39c12;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .btn {
            background: #00F19C;
            color: #001D58;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .btn:hover {
            background: #20c997;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 241, 156, 0.3);
        }

        .btn-secondary {
            background: #001D58;
            color: #fff;
        }

        .btn-secondary:hover {
            background: #24306e;
             color: #20c997;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(12, 1, 230, 0.3);
        }

        .progress-bar {
            background: #e9ecef;
            height: 8px;
            border-radius: 4px;
            margin: 2rem 0;
            overflow: hidden;
        }

        .progress-fill {
            background: #00F19C;
            height: 100%;
            transition: width 0.5s ease;
            width: 0%;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin: 2rem 0;
        }

        .step {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e9ecef;
            color: #666;
            font-weight: 600;
            position: relative;
        }

        .step.active {
            background: #00F19C;
            color: #001D58;
        }

        .step.completed {
            background: #001D58;
            color: #FFFFFF;
        }

        .step::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%;
            width: calc(100vw / 6);
            height: 2px;
            background: #e9ecef;
            transform: translateY(-50%);
            z-index: -1;
        }

        .step:last-child::after {
            display: none;
        }

        .step.completed::after {
            background: #00F19C;
        }

        .question-section {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            margin: 2rem 0;
        }

        .question-section h2 {
            color: #1a1a2e;
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .question-section p {
            color: #666;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .question {
            margin-bottom: 2rem;
            padding: 1.5rem;
            border: 1px solid #e9ecef;
            border-radius: 8px;
        }

        .question h3 {
            margin-bottom: 1rem;
            color: #1a1a2e;
            font-size: 1.1rem;
        }

        .rating-scale {
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: space-between;
            margin-top: 1rem;
        }

        .rating-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .rating-option input[type="radio"] {
            display: none;
        }

        .rating-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-bottom: 0.5rem;
        }

        .rating-option:hover .rating-circle {
            border-color: #00F19C;
            transform: scale(1.1);
        }

        .rating-option input[type="radio"]:checked + .rating-circle {
            background: #00F19C;
            color: #001D58;
            border-color: #00F19C;
        }

        .rating-label {
            font-size: 0.8rem;
            color: #666;
            text-align: center;
        }

        .navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 2rem 0;
        }

        .results-dashboard {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            margin: 2rem 0;
        }

        .results-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .results-header h2 {
            font-size: 2.5rem;
            color: #00082F;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .overall-score {
            font-size: 3.5rem;
            font-weight: 800;
            color: #00082F;
            margin: 1rem 0;
            letter-spacing: 1px;
        }

        .maturity-stage-result {
            font-size: 1.7rem;
            color: #00F19C;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .category-scores {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .category-score {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            border-left: 4px solid #001D58;
        }

        .category-score h3 {
            color: #00082F;
            margin-bottom: 0.5rem;
        }

        .category-score .score {
            font-size: 2rem;
            font-weight: 700;
            color: #00F19C;
        }

        .recommendations {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .recommendations h3 {
            color: #1a1a2e;
            margin-bottom: 1rem;
        }

        .recommendations ul {
            list-style-type: none;
            padding: 0;
        }

        .recommendations li {
            padding: 0.5rem 0;
            color: #666;
            position: relative;
            padding-left: 1.5rem;
        }

        .recommendations li::before {
            content: '✓';
            color: #198754;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .export-options {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0;
        }

        .hidden {
            display: none;
        }

        .industry-comparison {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .comparison-chart {
            height: 200px;
            background: white;
            border-radius: 8px;
            margin: 1rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
        }

        /* Header Styles */
        .main-header {
            width: 100%;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,8,47,0.04);
            padding: 0;
            position: relative;
            z-index: 10;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 2rem;
        }
        .header-logo {
            height: 48px;
            width: auto;
            display: block;
        }
        .header-nav {
            display: flex;
            gap: 2rem;
            font-size: 1.1rem;
        }
        .header-nav a {
            color: #001D58;
            text-decoration: none;
            font-weight: 500;
            padding: 0.25rem 0;
            transition: color 0.2s;
        }
        .header-nav a:hover {
            color: #00F19C;
        }
        .header-contact-btn {
            background: #00F19C;
            color: #001D58;
            font-weight: 600;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            margin-left: 2rem;
            transition: background 0.2s;
            font-size: 1.05rem;
            box-shadow: 0 2px 8px rgba(0,241,156,0.08);
            display: inline-block;
        }
        .header-contact-btn:hover {
            background: #20c997;
            color: #fff;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .rating-scale {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .progress-steps {
                flex-wrap: wrap;
                gap: 0.5rem;
            }
            
            .category-scores {
                grid-template-columns: 1fr;
            }
        }
