        :root {
            --primary: #cc1800;
            --primary-light: #e6f2ff;
            --primary-dark: #004d99;
            --text: #1a1a1a;
            --text-light: #666666;
            --text-lighter: #999999;
            --border: #e0e0e0;
            --border-light: #f0f0f0;
            --background: #f8f9fa;
            --success: #00a82d;
            --error: #e53935;
            --warning: #ffb300;
            --radius: 8px;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --card-padding: 1.5rem;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        body {
            background-color: var(--background);
            color: var(--text);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 1rem;
            animation: fadeIn 0.5s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .form-container {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2rem;
            margin: 2rem auto;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .form-header {
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .form-header h1 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.5rem;
        }
        
        .form-header p {
            color: var(--text-light);
            font-size: 1rem;
        }
        
        .form-section {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: var(--card-padding);
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        
        .form-section:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .form-section-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-light);
            color: black;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.25rem;
            position: relative;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text);
            font-size: 0.875rem;
        }
        
        .required:after {
            content: " *";
            color: var(--error);
        }
        
        input, select, textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 0.9375rem;
            transition: var(--transition);
            background-color: white;
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
        }
        
        /* Validation states */
        .valid {
            border-color: var(--success) !important;
            box-shadow: 0 0 0 2px rgba(0, 168, 45, 0.2) !important;
        }
        
        .invalid {
            border-color: var(--error) !important;
            box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2) !important;
        }
        
        .validation-message {
            font-size: 0.75rem;
            margin-top: 0.25rem;
            display: none;
        }
        
        .invalid + .validation-message {
            display: block;
            color: var(--error);
        }
        
        textarea {
            min-height: 120px;
            resize: vertical;
            padding: 1rem;
            line-height: 1.6;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        
        textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
        }
        
        .checkbox-group {
            margin: 1.5rem 0;
        }
        
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            cursor: pointer;
        }
        
        .checkbox-label input {
    width: 20px;       /* Bigger width */
    height: 20px;      /* Bigger height */
    margin-top: 0.2rem;
    accent-color: var(--primary);
    transform: scale(1.5); /* Scale it up */
    cursor: pointer;
        }
        
        .checkbox-label span {
            font-size: 0.875rem;
            color: var(--text-light);
        }
        
        .checkbox-label a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .checkbox-label a:hover {
            text-decoration: underline;
        }
        
        #recaptcha-container {
            margin: 1.5rem 0;
            min-height: 78px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: white;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        
        #recaptcha-container.loading {
            background: linear-gradient(90deg, #f9f9f9 25%, #e0e0e0 50%, #f9f9f9 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }
        
        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        .btn {
            background: #443291;
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
            width: 100%;
            font-size: 1rem;
            text-align: center;
        }
        
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
        }
        
        .btn:disabled {
            background: var(--text-lighter);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            animation: modalFadeIn 0.3s ease-out;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .modal-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .modal-success .modal-icon {
            color: var(--success);
        }
        
        .modal-error .modal-icon {
            color: var(--error);
        }
        
        .modal-warning .modal-icon {
            color: var(--warning);
        }
        
        .modal-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .modal-message {
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }
        
        .modal-btn {
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            border: none;
            background: var(--primary);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .modal-btn:hover {
            background: var(--primary-dark);
        }
        
        /* Verification check styles */
        #verification-check {
            display: flex;
            background: white;
            min-height: 100vh;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .verification-content {
            max-width: 500px;
            padding: 2rem;
        }
        
        .verification-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid var(--primary-light);
            border-top: 4px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1.5rem;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Honeypot field */
        .hp-field {
            position: absolute;
            left: -9999px;
        }
        
        /* CDD Notice */
        .cdd-notice {
            background-color: #fff8e1;
            border-left: 4px solid var(--warning);
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: var(--radius);
            font-size: 0.875rem;
        }
        
        /* Banned screen */
        #banned-screen {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
            padding: 2rem;
        }
        
        #banned-screen h2 {
            color: var(--error);
            margin-bottom: 1rem;
        }
        
        #banned-screen p {
            margin-bottom: 1rem;
            max-width: 500px;
        }
        
        /* Fraud attempt counter */
        .fraud-attempts {
            color: var(--error);
            font-size: 0.875rem;
            margin-top: 0.5rem;
            display: none;
        }
        
        /* Locked form */
        .form-locked {
            position: relative;
        }
        
        .form-locked::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.8);
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--error);
            font-weight: bold;
            font-size: 1.2rem;
            text-align: center;
            padding: 2rem;
        }
        
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .form-container {
                padding: 1.5rem;
            }
            
            .form-section {
                padding: 1.25rem;
            }
        }
