#container.main {
    padding-top: 0; /* Remove the padding-top since we're handling spacing differently */
    position: relative;
    z-index: 1;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add subtle shadow for better separation */
}

.mainBanner {
    position: relative;
    width: 100%;
    margin-top: 80px;
    z-index: 2; /* Increase z-index to be above container but below header */
}

.mainBannerBox {
    position: relative;
    width: 100%;
    height: auto; /* Change from fixed height to auto */
    overflow: visible; /* Change from hidden to visible */
    background-color: #fff;
}

.mainBannerCont {
    width: 100%;
    height: auto; /* Change from 100% to auto */
    position: relative;
}

.mainBannerCont img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}
.mainBannerCont.slider {
    width: 100%;
    height: 600px; /* 원하는 높이 */
    background-color: #ffffff; 
    position: relative;
}

.slide-item {
    width: 100%;
    height: 100%; /* 슬라이더 영역 기준 */
    display: flex;
    justify-content: center;
    align-items: center; /* ✅ 세로 중앙 정렬 핵심 */
    background-color: #ffffff; 
}
.slide-item img {
    height: 100%;           /* 슬라이더의 500px에 맞춤 */
    width: auto;            /* 비율 유지 */
    object-fit: contain;    /* 잘림 없이 비율 유지 */
    display: block;
}
.slick-dots,
.slick-slide-control00,
.slick-slide-control01 {
    display: none !important;
}

.banner-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2; /* Increase z-index to stay above the banner */
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slick-arrow {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    position: relative; /* Add position relative */
    z-index: 3; /* Ensure arrows stay above controls */
}

.slick-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slick-arrow img {
    width: 20px;
    height: 20px;
}

/* Report Section Styles */
.reportCont {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.report-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.textCont {
    flex: 1;
}

.report-header {
    margin-bottom: 30px;
}

.report-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.report-subtitle {
    font-size: 18px;
    color: #666;
}

.report-description {
    margin-bottom: 30px;
}

.report-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.report-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.report-link:hover {
    background: #0056b3;
}

.link-text {
    margin-right: 0px;
    font-weight: 500;
}

.link-icon img {
    width: 20px;
    height: 20px;
}

.graphCont {
    flex: 1;
}

.graph-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.imgBox {
    margin-bottom: 20px;
}

.imgBox img {
    width: 100%;
    height: auto;
}

.graph-text {
    text-align: center;
}

.graph-text .highlight {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.graph-text .emphasis {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .mainBannerBox {
        height: auto; /* Remove fixed height */
    }

    .report-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .report-title {
        font-size: 28px;
    }

    .report-subtitle {
        font-size: 16px;
    }

    .report-description p {
        font-size: 14px;
    }

    .graph-wrapper {
        padding: 20px;
    }

    .graph-text .highlight {
        font-size: 16px;
    }

    .graph-text .emphasis {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .mainBannerBox {
        height: auto; /* Remove fixed height */
    }

    .banner-controls {
        padding: 0 10px;
    }

    .slick-arrow {
        width: 30px;
        height: 30px;
    }

    .report-title {
        font-size: 24px;
    }

    .report-subtitle {
        font-size: 14px;
    }

    .report-description p {
        font-size: 13px;
    }

    .report-link {
        padding: 10px 20px;
        font-size: 14px;
    }
} 