/* general */
@font-face {
    font-family: 'GT Walsheim';
    src: url('../font/GT-Walsheim-Regular.woff2') format('woff2'),
         url('../font/GT-Walsheim-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: 'GT Walsheim', sans-serif;
}
:root {
    --WhiteColor: white;
    --BlackColor: #000000;
    --MenuBackground: #f4f4f4;
    --GreenColor: #9fab79;
    --TitleColor: #3a3b3c;
}

/* main */
.main-section {
    position: relative;
    width: 100vw;
    height: auto;
    margin-top: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
}

/* Form Page */
.page-form {
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    height: 175vh;
    display: flex;
    align-items: flex-start;
}
/* image */
.side-image {
    overflow: hidden;
    width: 10%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.2rem;
}
.img-side {
    width: 450%;
    height: auto;
}
/* title */
.title-box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* form */
.form-container {
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-weight: bold;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
.form-group:nth-child(1) input, .form-group:nth-child(2) input {
    width: 70%;
}
.form-group:nth-child(4) input {
    width: 75%;
}
textarea {
    resize: vertical;
}

/* Form group styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin: 1rem 0;
}
/* Styling each label */
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.3s ease;
}
/* Checkbox styling */
.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #007BFF;
}
/* Hover and focus effects */
.checkbox-group label:hover {
    color: #007BFF;
}
.checkbox-group input[type="checkbox"]:focus {
    outline: 2px solid #007BFF;
}
.form-group button {
    width: 30%;
    margin-left: 35%;
    padding: 0.8rem;
    border-radius: 4px;
    font-size: 1rem;
    background-color: orange;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 200ms ease;
}
.form-group button:hover {
    background-color: #007BFF;
}

@media screen and (min-width: 426px) {
    .side-image {
        width: 20%;
    }
    .img-side {
        width: 200%;
    }
    .form-container {
        width: 80%;
        padding: 3rem;
    }
}
@media screen and (min-width: 769px) {
    .side-image {
        width: 30%;
    } 
    .img-side {
        width: 100%;
    }
    .form-container {
        width: 70%;
    }
}
@media screen and (min-width: 1024px) {
    .side-image {
        width: 30%;
    } 
    .img-side {
        width: 100%;
    }
    .form-container {
        width: 70%;
    }
}