body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.title-section {
    text-align: center;
    padding: 100px 0 0 0;
}

.address-section {
    display: grid;
    justify-content: center;
    padding: 20px;
}

.address-box {
    border: 1px solid black;
    padding: 10px;
    max-width: 1000px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-section {
    text-align: center;
    /*padding: 20px 0 0;*/
    margin-left: 20px;
}

.inquiry-section form{
    display: inline-block;
    text-align: left;    
}

.input-section {
    text-align: center;
    padding: 20px;
}

.input-section form{
    display: inline-block;
    text-align: left;
}

.input-section input, .input-section textarea {
    width: 80%;
    max-width: 600px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid black;
}

.privacy-section {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.privacy-box {
    border: 1px solid black;
    padding: 10px;
    max-width: 600px;
    max-height: 200px;
    overflow-y: scroll;
}

.agreement-section {
    text-align: center;
    padding: 20px;
}

.send-button-section {
    text-align: center;
    padding: 20px;
}

.send-button-section button {
    padding: 10px 20px;
    border: 1px solid black;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-button-section button:hover {
    background-color: lightgray;
}


.scroll-box {
    max-width: 800px;
    height: 100px; /* 固定高度 */
    overflow-y: scroll; /* 添加垂直滚动条 */
    border: 1px solid #000;
    padding: 10px;
    margin-bottom: 20px;
}