.luxury-container {
            max-width: 1100px;
            margin: 0 auto;
            background: #22C1C3;
background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
            box-shadow: var(--shadow);
            border-radius: 18px;
            overflow: hidden;
        }

        .luxury-header {
            background: #0e71eb;
            background: linear-gradient(90deg, rgba(14, 113, 235, 1) 0%, rgba(9, 9, 121, 1) 29%, rgba(140, 8, 8, 1) 66%, rgba(179, 11, 142, 1) 100%);
            color: white;
            padding: 2.5rem 2rem;
            text-align: center;
        }

        .luxury-header h1 {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-family: 'Oswald';
            color: #00FFFF;
        }

        .luxury-header p {
            font-size: 1.5rem;
            max-width: 600px;
            margin: 0 auto;
            font-family: 'Oswald light';
            color: #80FF00;
        }

        .form-container {
            padding: 2rem;
        }

        .form-section {
            margin-bottom: 2.5rem;
            border-bottom: 1px solid var(--border);
            padding-bottom: 1.5rem;
        }

        .form-section:last-of-type {
            border-bottom: none;
        }

        .section-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary);
            display: inline-block;
        }

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

        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -0.75rem;
        }

        .form-col {
            flex: 1;
            padding: 0 0.75rem;
            min-width: 250px;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark);
        }

        .field-note {
            font-size: 0.85rem;
            color: var(--gray);
            margin-top: 0.25rem;
            font-style: italic;
        }

        .required::after {
            content: " *";
            color: #e53e3e;
        }

        input,
        select,
        textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(45, 90, 160, 0.1);
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .checkbox-group input {
            width: auto;
            margin-right: 0.5rem;
        }

        .authorization-box {
            background-color: #f7fafc;
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 1.5rem;
            margin-top: 1rem;
        }

        .authorization-text {
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .form-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        .btn-primary:hover {
            background-color: #2c5282;
        }

        .btn-secondary {
            background-color: #e2e8f0;
            color: var(--dark);
        }

        .btn-secondary:hover {
            background-color: #cbd5e0;
        }

        .security-notice {
            background-color: #f0fff4;
            border: 1px solid #9ae6b4;
            border-radius: 4px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }

        .security-icon {
            color: var(--success);
            margin-right: 0.75rem;
            font-size: 1.25rem;
        }

        @media (max-width: 768px) {
            .form-col {
                flex: 100%;
            }

            .luxury-header {
                padding: 1.5rem 1rem;
            }

            .luxury-header h1 {
                font-size: 1.8rem;
            }

            .form-container {
                padding: 1.5rem;
            }

            .form-actions {
                flex-direction: column;
                gap: 1rem;
            }

            .btn {
                width: 100%;
            }
      /* Override external CSS only for this specific loan application form */
        #loanForm {
        background: transparent !important;
        padding: 50 !important;
        border: none !important;
        }
        
        /* If other elements inside still have white backgrounds */
        #loanForm .form-control,
        #loanForm select,
        #loanForm .progress-save {
        background: rgba(0, 0, 0, 0.3) !important;
        }
        /* Base Styles */
        .modern-marquee {
        width: 100%;
        overflow: hidden;
        background: #003366;
        color: white;
        white-space: nowrap;
        padding: 12px 0;
        font-family: Arial, sans-serif;
        position: relative;
        }
        
        .modern-marquee-content {
        display: inline-block;
        padding-left: 100%;
        animation: scroll 55s linear infinite;
        }
        
        @keyframes scroll {
        0% {
        transform: translateX(0);
        }
        100% {
        transform: translateX(-100%);
        }
        }
        
        .modern-marquee:hover .modern-marquee-content {
        animation-play-state: paused;
        }
        
        /* Button Styles */
        .marquee-cta {
        display: inline-block;
        background: #ff6600;
        color: white;
        padding: 8px 20px;
        margin: 0 12px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        cursor: pointer;
        }
        
        .marquee-cta:hover {
        background: #e65c00;
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        
        /* Desktop Styles */
        @media screen and (min-width: 768px) {
        .modern-marquee {
        font-size: 16px;
        }
        
        .modern-marquee-content {
        animation-duration: 55s;
        }
        
        .mobile-only {
        display: none;
        }
        
        .desktop-only {
        display: block;
        }

