body {
    margin: 0;
    overflow-x: hidden;
    background-color: #f0f0f0;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.background-image {
    width: 100%;
    height: 6712px;
    background-image: url('images/background-talk.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    position: absolute;
    top: 0;
    left: 0;
}

.clickable-area {
    position: absolute;
    cursor: pointer;
    /* For debugging: background-color: rgba(255, 0, 0, 0.3); */
}

/* 특정 클릭 가능한 영역들의 위치 및 크기 (1200px 너비 기준) */
#area1 { top: 2659px; left: 47px; width: 162px; height: 89px; }
#area2 { top: 2659px; left: 230px; width: 162px; height: 89px; }
#area3 { top: 2659px; left: 422px; width: 162px; height: 89px; }
#area4 { top: 2659px; left: 608px; width: 162px; height: 89px; }
#area5 { top: 2659px; left: 796px; width: 162px; height: 89px; }
#area6 { top: 2659px; left: 980px; width: 162px; height: 89px; }
#area7 { top: 2889px; left: 79px; width: 494px; height: 139px; }
#area8 { top: 2889px; left: 611px; width: 494px; height: 139px; }
#area9 { top: 3901px; left: 40px; width: 1113px; height: 114px; }
#area10 { top: 6561px; left: 40px; width: 1113px; height: 114px; }
#area11 {  top: 3090px; left: 40px; width: 1113px; height: 114px; }


/* 캐러셀 스타일 */
.carousel-container {
    position: absolute;
    overflow: hidden;
}

#carousel1 { top: 3417px; left: 49px; width: 1102px; height: 839px; }
#carousel2 { top: 4568px; left: 49px; width: 1102px; height: 760px; }
#carousel3 { top: 5640px; left: 49px; width: 1102px; height: 760px; }

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    flex-shrink: 0;
}

.carousel-item.active {
    display: block;
}

.carousel-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-controls button {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #ccc;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
}