        .contact-us-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: stretch;
            gap: 20px;
            padding: 50px 20px;
            background-color: #f7f7f7;
            border-radius: 15px;
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
            font-family: 'Arial', sans-serif;
        }

        .contact-details, .contact-form, .contact-map {
            flex: 1;
            min-width: 300px;
            max-width: 33%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .contact-details, .contact-form {
            background-color: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-details h2, .contact-form h2 {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
        }

        .contact-details .detail-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .contact-details .detail-icon {
            font-size: 30px;
            color: #FFCB04;
        }

        .contact-details h4 {
            font-size: 16px;
            font-weight: bold;
            color: #555;
            margin: 0;
        }

        .contact-details p {
            font-size: 14px;
            color: #777;
            margin: 0;
        }

        .contact-form .form-group {
            margin-bottom: 20px;
        }

        .contact-form label {
            font-size: 14px;
            color: #333;
            font-weight: bold;
            margin-bottom: 5px;
            display: block;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            color: #555;
            transition: border-color 0.3s ease-in-out;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #FFCB04;
            outline: none;
        }

        .contact-form textarea {
            resize: none;
        }

        .btn-submit {
            background-color: #FFCB04;
            color: #fff;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            width: 100%;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .btn-submit:hover {
            background-color: #e0a800;
            transform: scale(1.05);
        }

        .contact-map {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 1024px) {
            .contact-details, .contact-form, .contact-map {
                max-width: 48%;
                flex: 1 1 48%;
            }
        }

        @media (max-width: 768px) {
            .contact-details, .contact-form, .contact-map {
                max-width: 100%;
                flex: 1 1 100%;
            }

            .contact-us-section {
                padding: 20px;
            }

            .contact-map iframe {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .contact-details h2, .contact-form h2 {
                font-size: 24px;
            }

            .contact-form label, .contact-details h4, .contact-details p {
                font-size: 12px;
            }

            .btn-submit {
                font-size: 14px;
                padding: 10px;
            }

            .contact-map iframe {
                height: 250px;
            }
        }