      body {
            background: #ec0083;
            min-height: 100vh;
            font-family: 'Sansita', sans-serif;
            margin: 0;
        }

        .header-bar {
            background: #2c3e50;
            color: white;
            padding: 15px 0;
            font-family: 'Open Sans', sans-serif;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .bmv-seal {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border: 3px solid #1a4b8c;
        }

        .seal-inner {
            width: 45px;
            height: 45px;
            background: #1a4b8c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 10px;
            text-align: center;
            line-height: 1.1;
        }

        .header-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
        }

        .header-right {
            text-align: right;
            font-size: 0.9rem;
        }

        .main-content {
            padding: 40px 0;
        }

        .welcome-section {
            margin-bottom: 50px;
        }

        .welcome-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 30px;
        }

        .welcome-text {
            font-size: 1.1rem;
            color: white;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .services-sidebar {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .services-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
        }

        .service-item {
            color: white;
            margin-bottom: 8px;
            font-size: 0.95rem;
            font-family: 'Open Sans', sans-serif;
        }

        .service-item::before {
            content: "■";
            margin-right: 8px;
        }

        .license-section {
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            margin-bottom: 25px;
        }

        .license-text {
            font-size: 1rem;
            color: white;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .license-example {
            padding: 0px;
            margin: 30px 0;
            position: relative;
            max-width: 500px;
        }

        .license-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .nc-flag {
            width: 40px;
            height: 25px;
            background: linear-gradient(to bottom, #003366 50%, #cc0000 50%);
            border: 1px solid #ccc;
        }

        .license-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #003366;
            text-align: center;
            flex-grow: 1;
            margin: 0 15px;
        }

        .not-federal {
            font-size: 0.7rem;
            color: #003366;
            text-align: right;
            font-weight: bold;
        }

        .license-body {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .license-photo {
            width: 100px;
            height: 120px;
            background: #f0f0f0;
            border: 2px solid #ddd;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 0.8rem;
            text-align: center;
        }

        .license-info {
            flex-grow: 1;
            font-family: 'Open Sans', sans-serif;
            font-size: 0.85rem;
            color: #333;
        }

        .license-number {
            font-weight: bold;
            font-size: 1rem;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .info-row {
            margin-bottom: 5px;
        }

        .info-label {
            font-weight: 600;
            display: inline-block;
            min-width: 80px;
        }

        .action-button {
            background: #ff1493;
            color: white;
            border: 3px solid white;
            border-radius: 25px;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin: 10px 15px 10px 0;
            transition: all 0.3s ease;
            font-family: 'Sansita', sans-serif;
        }

        .action-button:hover {
            background: white;
            color: #ff1493;
            transform: translateY(-2px);
        }

        .photo-note {
            font-family: 'Open Sans', sans-serif;
            font-size: 0.85rem;
            color: white;
            margin-top: 20px;
            font-style: italic;
        }

        .bottom-sections {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 60px;
        }

        .contact-section, .news-section {
            color: white;
        }

        .bottom-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .contact-text, .news-text {
            font-family: 'Open Sans', sans-serif;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .footer {
            background: #2c3e50;
            color: white;
            padding: 20px 0;
            margin-top: 60px;
            font-family: 'Open Sans', sans-serif;
            font-size: 0.85rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .header-title {
                font-size: 1.4rem;
            }

            .welcome-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .license-body {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .bottom-sections {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .action-button {
                display: block;
                text-align: center;
                margin: 10px 0;
            }
            .main-content{ width:90% }
            .mob-logo{
                justify-content: center; text-align: center !important; margin-top: 30px;
            }
        }

.form-container {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            margin: 50px auto;
            max-width: 750px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        
        .form-label {
            color: white;
            font-weight: 300;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .required {
            color: #ffcccb;
        }
        
        .form-control, .form-select {
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 25px;
            padding: 12px 20px;
            font-size: 14px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            border: none;
            outline: none;
        }
        
        .form-control::placeholder {
            color: #999;
            font-size: 14px;
        }
        
        .form-check {
            margin: 25px 0;
        }
        
        .form-check-input {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            margin-right: 10px;
        }
        
        .form-check-label {
            color: white;
            font-size: 14px;
            font-weight: 300;
        }
        
        .privacy-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            text-align: center;
            margin: 20px 0;
            line-height: 1.4;
        }
        
        .privacy-link {
            color: white;
            text-decoration: underline;
        }
        
        .privacy-link:hover {
            color: #ffcccb;
        }
        
        .submit-btn {
            background: #e91e63;
            border: none;
            color: white;
            padding: 12px 40px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 0 auto;
            text-transform: lowercase;
        }
        
        .submit-btn:hover {
            background: #c2185b;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }

        .form_steps{ display:flex; align-items:center; gap:2%; align-items:flex-start; margin-bottom:50px }
        .form_steps .step{ width:46%; flex-grow:0; flex-shrink:0; display:flex; align-items:flex-start;  color: inherit; text-decoration:none !important; }
        .form_steps .step .step_n{ font-size:90px; color: rgba(255, 255, 255, 0.30); line-height:1; margin-right:10px; }
        .form_steps .step .step_text{ font-size:20px; color: rgba(255, 255, 255,  1); }