.eael-reading-progress-wrap .eael-reading-progress{height:5px !important;}.eael-reading-progress-wrap .eael-reading-progress .eael-reading-progress-fill{height:5px !important;transition:width 50ms ease;}div.eael-reading-progress-wrap div.eael-reading-progress div.eael-reading-progress-fill{background-color:#1fd18e !important;}/* Start custom CSS */:root {
            --fom-green: #8c9e6c;
            --fom-gold: #feb829;
            --fom-blue: #0858b8;
            --fom-blue2: #3182b5;
            --fom-orange: #dc8d1f;
            --fom-green2: #0d815d;
            --white: #ffffff;
            --black: #1a1a1a;
            --gray-light: #f5f5f5;
            --gray-mid: #666666;
            --gray-border: #dddddd;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--black);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--gray-light);
        }
        
        h1, h2, h3, h4 {
            font-family: 'Hind Guntur', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Header */
        header {
            background: var(--white);
            padding: 1.5rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .tagline {
            font-family: 'Hind Guntur', sans-serif;
            font-weight: 300;
            font-size: 0.9rem;
            color: var(--fom-blue);
        }
        
        .header-link {
            color: var(--fom-blue);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .header-link:hover {
            color: var(--fom-green);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--fom-green) 0%, var(--fom-green2) 100%);
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.4;
        }
        
        .hero-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }
        
        .hero h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--white);
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: var(--white);
            opacity: 0.95;
        }
        
        /* Form Container */
        .form-wrapper {
            max-width: 900px;
            margin: -3rem auto 4rem;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }
        
        .form-container {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            padding: 3rem;
        }
        
        /* Progress Indicator */
        .progress-bar {
            background: var(--gray-light);
            height: 8px;
            border-radius: 10px;
            margin-bottom: 3rem;
            overflow: hidden;
        }
        
        .progress-fill {
            background: linear-gradient(90deg, var(--fom-green), var(--fom-gold));
            height: 100%;
            width: 0%;
            transition: width 0.5s ease;
            border-radius: 10px;
        }
        
        /* Form Sections */
        .form-section {
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 2px solid var(--gray-light);
        }
        
        .form-section:last-of-type {
            border-bottom: none;
            margin-bottom: 2rem;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .section-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--fom-blue), var(--fom-blue2));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            font-family: 'Hind Guntur', sans-serif;
            flex-shrink: 0;
        }
        
        .section-title {
            font-size: 1.8rem;
            color: var(--fom-green);
        }
        
        /* Form Fields */
        .form-group {
            margin-bottom: 2rem;
        }
        
        .form-label {
            display: block;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.75rem;
            font-size: 1.05rem;
        }
        
        .form-label.required::after {
            content: ' *';
            color: var(--fom-orange);
        }
        
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid var(--gray-border);
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }
        
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--fom-blue);
            box-shadow: 0 0 0 4px rgba(8, 88, 184, 0.1);
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        /* Radio Buttons */
        .radio-group,
        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .radio-option,
        .checkbox-option {
            display: flex;
            align-items: center;
            padding: 1rem 1.25rem;
            border: 2px solid var(--gray-border);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--white);
        }
        
        .radio-option:hover,
        .checkbox-option:hover {
            border-color: var(--fom-green);
            background: rgba(140, 158, 108, 0.05);
        }
        
        .radio-option.selected,
        .checkbox-option.selected {
            border-color: var(--fom-blue);
            background: rgba(8, 88, 184, 0.05);
        }
        
        .radio-option input[type="radio"],
        .checkbox-option input[type="checkbox"] {
            margin-right: 1rem;
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--fom-blue);
        }
        
        .radio-option label,
        .checkbox-option label {
            cursor: pointer;
            flex: 1;
            font-size: 1rem;
        }
        
        /* Optional Toggle */
        .optional-toggle {
            margin-top: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .optional-toggle input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: var(--fom-gold);
        }
        
        .optional-toggle label {
            cursor: pointer;
            color: var(--gray-mid);
            font-style: italic;
        }
        
        /* Help Text */
        .help-text {
            font-size: 0.9rem;
            color: var(--gray-mid);
            margin-top: 0.5rem;
            font-style: italic;
        }
        
        /* Submit Button */
        .submit-section {
            text-align: center;
            padding-top: 2rem;
        }
        
        /* Privacy Notice */
        .privacy-note {
            font-size: 0.85rem;
            color: #666;
            margin-top: 0.75rem;
            text-align: center;
        }
        .privacy-note a {
            color: inherit;
            text-decoration: underline;
        }
        /* Text Opt-In Clause */
        .text-opt-in {
            margin-bottom: 2rem;
            padding-top: 1rem;
        }
        
        .opt-in-box {
            background: #fff9e6;
            border: 2px solid var(--fom-gold);
            border-radius: 10px;
            padding: 1.5rem;
        }
        
        .opt-in-label {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            cursor: pointer;
        }
        
        .opt-in-label input[type="checkbox"] {
            margin-top: 0.25rem;
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--fom-blue);
            flex-shrink: 0;
        }
        
        .opt-in-label span {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--black);
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--fom-blue), var(--fom-blue2));
            color: var(--white);
            padding: 1.5rem 4rem;
            border: none;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(8, 88, 184, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(8, 88, 184, 0.4);
        }
        
        .submit-btn:active {
            transform: translateY(-1px);
        }
        
        /* Trust Badge */
        .trust-badge {
            background: var(--gray-light);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 2rem;
            border-left: 4px solid var(--fom-gold);
        }
        
        .trust-badge p {
            color: var(--gray-mid);
            font-size: 0.95rem;
            margin: 0;
        }
        
        .trust-badge strong {
            color: var(--fom-blue);
        }
        
        /* Footer */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 2rem;
            text-align: center;
        }
        
        footer p {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .form-container {
                padding: 2rem 1.5rem;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .submit-btn {
                width: 100%;
                padding: 1.25rem 2rem;
            }
            
            .hero {
                padding: 3rem 1.5rem;
            }
            
            .form-wrapper {
                padding: 0 1rem;
            }
        }
        
        /* Input styling improvements */
        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
            opacity: 1;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .form-section {
            animation: fadeIn 0.5s ease;
        }
        
        /* Currency input styling */
        .currency-input-wrapper {
            position: relative;
        }
        
        .currency-input-wrapper::before {
            content: '$';
            position: absolute;
            left: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-mid);
            font-weight: 700;
        }
        
        .currency-input-wrapper .form-input {
            padding-left: 2.5rem;
        }
        
        /* Percentage input styling */
        .percentage-input-wrapper {
            position: relative;
        }
        
        .percentage-input-wrapper::after {
            content: '%';
            position: absolute;
            right: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-mid);
            font-weight: 700;
        }
        
        .percentage-input-wrapper .form-input {
            padding-right: 2.5rem;
        }/* End custom CSS */