body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.landing-container {
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.additional-image-box {
    grid-column: 1 / -1; /* 가로로 전체 너비를 차지하게 만듭니다 */
    text-align: center; /* 이미지를 중앙에 정렬합니다 */
    margin-bottom: 20px; /* 아래 콘텐츠와 간격을 줍니다 */
}

.additional-image {
    width: 100%;
    max-width: 1200px; /* 이미지를 중앙에 맞추고 너비를 제한 */
    height: auto;
    border-radius: 15px; /* 이미지 모서리를 둥글게 설정 */
    object-fit: cover; /* 이미지 비율 유지 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 이미지에 약간의 그림자 효과 */
}

.image-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.image-box h2 {
    margin-bottom: 10px;
}

.image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
}

@media (max-width: 1024px) {
    .landing-container {
        grid-template-columns: 1fr;
    }

    .additional-image-box {
        grid-column: 1 / -1;
    }

    .image-box {
        width: 100%;
    }

    .image {
        width: 100%;
        height: auto;
    }
}
