.elementor-32300 .elementor-element.elementor-element-1e49667{--display:flex;}/* Start custom CSS for html, class: .elementor-element-fe30879 *//* Custom design with specified color palette */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            line-height: 1.6;
            color: #1b1b1b;
        }
        
        /* Main container */
        .financing-container {
            max-width: 100%;
            margin: 2rem auto;
            padding: 2rem;
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(27, 27, 27, 0.1);
        }
        
        /* Heading styles */
        .financing-heading {
            font-size: 2rem;
            font-weight: 700;
            color: #1b1b1b;
            text-align: center;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
        }
        
        /* Decorative accent line */
        .accent-line {
            width: 80px;
            height: 3px;
            background: #c8b273;
            margin: 0 auto 1.5rem;
            border-radius: 2px;
        }
        
        /* Description text */
        .financing-description {
            text-align: center;
            color: #666666;
            font-size: 1rem;
            margin-bottom: 2rem;
            padding: 0 1rem;
        }
        
        /* Location list */
        .location-list {
            list-style: none;
            display: grid;
            gap: 0.75rem;
        }
        
        /* Individual location items */
        .location-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .location-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(200, 178, 115, 0.2);
        }
        
        /* Location links */
        .location-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            text-decoration: none;
            background: #f8f8f8;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .location-link:hover {
            background: #ffffff;
            border-color: #c8b273;
        }
        
        .location-link:focus {
            outline: none;
            border-color: #c8b273;
            box-shadow: 0 0 0 3px rgba(200, 178, 115, 0.2);
        }
        
        /* Location name styling */
        .location-name {
            font-weight: 600;
            font-size: 1.125rem;
            color: #1b1b1b;
            transition: color 0.3s ease;
        }
        
        .location-code {
            font-weight: 400;
            color: #666666;
            margin-left: 0.5rem;
        }
        
        .location-link:hover .location-name {
            color: #c8b273;
        }
        
        /* Arrow icon */
        .location-arrow {
            width: 24px;
            height: 24px;
            color: #c8b273;
            transition: transform 0.3s ease;
        }
        
        .location-link:hover .location-arrow {
            transform: translateX(4px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 640px) {
            .financing-container {
                margin: 1rem;
                padding: 1.5rem;
            }
            
            .financing-heading {
                font-size: 1.75rem;
            }
            
            .location-link {
                padding: 1rem 1.25rem;
            }
            
            .location-name {
                font-size: 1rem;
            }
        }
        
        /* Print styles */
        @media print {
            .financing-container {
                box-shadow: none;
                border: 1px solid #1b1b1b;
            }
        }/* End custom CSS */