body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* 컨테이너 */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
}

/* 상단 메인 이미지 */
.top-image {
    width: 100%;
    max-width: 1200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.top-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 하단 2열 레이아웃 */
.bottom-section {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    border-radius: 15px;
    overflow: hidden;
}

/* 왼쪽 이미지 */
.left-content {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.left-content img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 오른쪽 텍스트 */
.right-content {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.right-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #008000;
}

.right-content h3 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

/* 반응형 (모바일에서는 세로 정렬) */
@media (max-width: 768px) {
    .bottom-section {
        flex-direction: column;
        gap: 10px;
    }
}
