[data-page="contactus"] h1 {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-top: 2rem;  /* 이 줄을 추가 */
    margin-bottom: 2rem;
}

[data-page="contactus"] .contact-detail p {
    font-size: 1.2rem;
    line-height: 1.8;
}

[data-page="contactus"] .contact-detail h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 2rem;  /* 이 줄을 추가 */
}

[data-page="contactus"] .green-text {
    color: #0DA960;
    font-weight: bold;
}

[data-page="contactus"] .info-box {
    border: 5px solid black;
    border-radius: 0px;
    margin-bottom: 2rem;

    max-width: 400px;  /* 이 줄을 추가 */
    /* 또는 */
    /* width: 400px;     고정 너비를 원한다면 이 줄을 사용 */
}

[data-page="contactus"] .info-header {
    background-color: #0D904F;
    color: white;
    padding: 1.2rem;
    font-size: 1.5rem;
    text-align: center;
}

[data-page="contactus"] .info-content li {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
    padding-left: 1rem;  /* 이 줄을 추가 */
}

[data-page="contactus"] .info-content li::before {
    color: #0D904F;
}

[data-page="contactus"] .container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 900px;
    padding-top: 2rem;  /* 이 줄을 추가 */
}

[data-page="contactus"] .info-blocks {
    margin-left: auto;
}

[data-page="contactus"] .info-content ul {
    list-style-type: none;
}

@media (max-width: 768px) {
    [data-page="contactus"] h1 {
        font-size: 2rem;
    }

    [data-page="contactus"] .contact-detail p {
        font-size: 1rem;
    }

    [data-page="contactus"] .info-content li {
        font-size: 1rem;
    }

    [data-page="contactus"] .container {
        flex-direction: column;
        align-items: center;
    }

    [data-page="contactus"] .info-blocks {
        margin-left: 0;
    }
}