        /* CSS Reset 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            color: #333;
            background-color: #FFFFFF;
            line-height: 1.6;
        }*/

        .hero-section2 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100vh;
            background-color: #ffffff;
            padding: 20px;
        }

        .hero-image2-wrapper2 {
            max-width: 50%;
        }

        .hero-image2 {
            width: 100%;
            height: auto;
            min-height: 629px;
            object-fit: cover;
            border-top-right-radius: 360px;
            border-bottom-right-radius: 360px;
        }

        .form-container {
            max-width: 45%;
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .form-container h2 {
            font-size: 2rem;
            color: #2E8B57;
            margin-bottom: 20px;
        }

        .form-container p {
            font-size: 1rem;
            color: #333;
            margin-bottom: 20px;
        }

        .form-container form {
            display: flex;
            flex-direction: column;
        }

        .form-container input,
        .form-container textarea {
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-container button {
            padding: 10px;
            background-color: #4CAF50;
            color: white;
            font-size: 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .form-container button:hover {
            background-color: #388E3C;
        }

        @media (max-width: 768px) {
            .hero-section2 {
                flex-direction: column;
                text-align: center;
            }

            .hero-image2-wrapper2 {
                max-width: 80%;
                margin-bottom: 20px;
            }

            .form-container {
                max-width: 90%;
            }
        }
