 .banner-section {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
        }

        .banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .banner-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .banner-block {
            position: relative;
            z-index: 2;
            min-height: 100vh;
            display: flex;
            align-items: center;
            /* Removed background overlay to show complete background image */
        }

        .container-fluid {
            max-width: 1200px;
        }

        .banner-caption h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .banner-caption h2 span {
            color: #e4c34e;
        }

        .banner-caption h6 {
            font-size: 1.1rem;
            color: white;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .banner-caption h6 span {
            color: #e4c34e;
            font-weight: bold;
        }

        .form-container {
            background: rgba(255, 255, 255, 0.95);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .form-container h5 {
            color: #333;
            margin-bottom: 1.4rem;
            text-align: center;
            font-weight: bold;
        }

        .textinput, .selectinput {
            width: 100%;
            padding: 0.5rem;
            margin-bottom: 1rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .textinput:focus, .selectinput:focus {
            outline: none;
            border-color: #e4c34e;
        }

        .selectinput {
            background: white;
        }

        label {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
            display: block;
        }

        #leadform {
            width: 100%;
            padding: 0.5rem;
            background: #e4c34e;
            color: #000;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        #leadform:hover {
            background: #d4b340;
        }

        .security-notice {
            background-color: #e4c34e;
            text-align: center;
            padding: 8px;
            border-radius: 5px;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .security-notice span {
            font-size: 12px;
            color: black;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .banner-caption h2 {
                font-size: 2rem;
            }
            
            .form-container {
                padding: 1.5rem;
                margin-top: 2rem;
            }
            
            .row {
                /* flex-direction: column; */
            }
            
            .col-md-6:first-child {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 500px) {
            .banner-caption h2 {
                font-size: 1.5rem;
                color: #002e5e;
            }
            
            .banner-caption h6 {
                font-size: 1rem;
                color: #002e5e;
            }
            
            .form-container {
                padding: 1rem;
            }
        }