
        body {
            font-family: system-ui, '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f5f0;
        }

        .contactform{
            display: flex;
            width: 80%;
            height: 80vh;
            margin: 10% auto;
            flex-direction: row;
            justify-content: space-around;
            align-items: center;
            padding: 10px 20px;
            border-radius: 24px;
            background-color: wheat;
        }

        .contact-container {
            width: 30%;
            margin: 50px auto;
            background: transparent;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            background-image: url(../asset/contactbg.jpg);
            background-size: cover;
            object-fit: cover;
            overflow: hidden;
        }

        .divider {
            border: 0 ;
            height: 80vh;
            background-color: #8c6239;
            margin: 20px 20px;
            width: 1px;
        }

        .address{
            display: flex;
            width: 30%;
            margin: 10% auto;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            color: #fff;
            padding: 10px 20px;
            font-size: 18px;
            text-align: justify;
            background-color: burlywood;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .address h2 {
            text-align: center;
            font-size: 24px;
            color: #fff;
            margin-bottom: 20px;
            text-decoration: underline;
        }

        .address a {
            text-decoration: none;
        }

        .address a:hover {
            text-decoration: underline;
            color: #D2A24C;
        }

        

        .contact-container h2 {
            text-align: center;
            font-size: 24px;
            color: #fff;
            margin-bottom: 20px;
            text-decoration: underline;
        }

        .contact-container form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
            position: relative;
        }

        .form-group label {
            font-size: 14px;
            color: #fff;
        }

        .form-group input,
        .form-group textarea {
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 5px;
            outline: none;
            background-color: #f9f9f9;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #8c6239;
        }

        .form-group textarea {
            resize: none;
            height: 100px;
        }

        .form-submit {
            display: flex;
            justify-content: center;
            position: relative;
            margin-top: 10px;
        }

        .form-submit button {
            padding: 10px 20px;
            font-size: 16px;
            color: #fff;
            background-color: #8c6239;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .form-submit button:hover {
            background-color: #6b4e2f;
        }

        .contact-info {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            color: #fff;
            position: relative;
            padding: 10px 0;
            background-color: #8c6239;
        }

        .contact-info a {
            color: #D2A24C;
            text-decoration: none;
        }

        .contact-info a:hover {
            text-decoration: underline;
            color: bisque;
        }

        .add{
            margin-top: 20px;
        }

        @media screen and (max-width: 1024px) {
            .contactform {
                flex-direction: column;
                height: auto;
                margin-top: 15%;
                
            }

            .contact-container,
            .address {
                width: 80%;
                margin: 2% auto;
            }

            hr {
                display: none;
            }
            
        }

        @media screen and (max-width: 1024px) {
            .contactform {
                flex-direction: column;
                height: auto;
                margin-top: 15%;
                
            }

            .contact-container,
            .address {
                width: 80%;
                margin: 2% auto;
            }

            hr {
                display: none;
            }
            
        }