  .lead-form-container {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-width: 1000px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }

        /* Property Image Section */
        .property-image-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0C3F32 0%, #1a5c4a 100%);
        }

        .property-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .property-image:hover {
            transform: scale(1.05);
        }

        /* Image Overlay */
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg, 
                rgba(12, 63, 50, 0.7) 0%, 
                rgba(12, 63, 50, 0.3) 100%
            );
            display: flex;
            align-items: flex-end;
            padding: 2rem;
        }

        .property-info {
            color: #ffffff;
            text-align: left;
        }

        .property-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .property-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* Form Section */
        .form-section {
            padding:15px 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #ffffff;
        }

        .form-header {
            text-align: center;
            margin-bottom:1rem;
        }

        .form-title {
            color: #0C3F32;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .form-subtitle {
            color: #666;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Form Styling */
        .lead-form {
            width: 100%;
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .form-label {
            display: block;
            color: #0C3F32;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: #ffffff;
            color: #333;
        }

        .form-input:focus {
            outline: none;
            border-color: #0C3F32;
            box-shadow: 0 0 0 3px rgba(12, 63, 50, 0.1);
            transform: translateY(-1px);
        }

        .form-input::placeholder {
            color: #999;
        }

        /* Input Icons */
        .input-icon {
            position: absolute;
            top: 50%;
            left: 1rem;
            transform: translateY(-50%);
            color: #0C3F32;
            font-size: 1.1rem;
            margin-top: 12px;
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #0C3F32 0%, #1a5c4a 100%);
            color: #ffffff;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(12, 63, 50, 0.2);
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #1a5c4a 0%, #0C3F32 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(12, 63, 50, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
            box-shadow: 0 4px 15px rgba(12, 63, 50, 0.2);
        }

        /* Privacy Notice */
        .privacy-notice {
            margin-top: 1rem;
            text-align: center;
            font-size: 0.85rem;
            color: #666;
            line-height: 1.4;
        }

        .privacy-notice a {
            color: #0C3F32;
            text-decoration: none;
        }

        .privacy-notice a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding: 1rem;
            }

            .lead-form-container {
                grid-template-columns: 1fr;
                max-width: 500px;
                min-height: auto;
            }

            .property-image-section {
                height: 300px;
                order: -1;
            }

            .form-section {
                padding: 2rem 1.5rem;
            }

            .form-title {
                font-size: 1.6rem;
            }

            .property-title {
                font-size: 1.5rem;
            }

            .image-overlay {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .form-section {
                padding: 1.5rem 1rem;
            }

            .form-title {
                font-size: 1.4rem;
            }

            .property-title {
                font-size: 1.3rem;
            }

            .form-input {
                padding: 0.9rem 0.9rem 0.9rem 2.8rem;
            }

            .input-icon {
                left: 0.8rem;
                font-size: 1rem;
            }
        }

        /* Loading Animation */
        .btn-loading {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .btn-loading::after {
            content: '';
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid #ffffff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            display: inline-block;
            margin-left: 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }