/* 탄소중립소개 페이지 스타일 */

/* 페이지 컨테이너 */
.intro-page {
    max-width: 1490px;
    margin: 0 auto;
    background-color: #ffffff;
    min-height: 100vh;
}

/* 메인 페이지가 아닌 페이지에서 푸터를 컨텐츠 아래에 붙이기 */
/* intro 페이지에서만 푸터를 relative로 설정 (메인 페이지는 제외) */
body:not(:has(.main-title-section)) .footer {
    position: relative !important;
    bottom: auto !important;
    margin-top: auto;
}

/* 상단 배너 */
.intro-banner {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 308px;  /* 440px * 0.7 */
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 0; /* 헤더가 최상단일 때 배너가 헤더 뒤에 보이도록 margin-top 제거 */
    z-index: 1; /* 기본적으로 낮은 z-index (스크롤 시 헤더 뒤로 사라짐) */
}

/* 헤더가 최상단일 때만 배너가 헤더 뒤에 보이도록 */
body:not(.header-scrolled) .intro-banner {
    z-index: 999; /* 헤더(z-index: 1000) 바로 아래에 배치하여 투명한 헤더가 배너를 볼 수 있도록 */
    margin-top: 0; /* 헤더 뒤에 배너가 보이도록 margin-top 제거 */
}

/* 헤더가 스크롤됐을 때도 배너의 top 위치는 변경하지 않음 */
body.header-scrolled .intro-banner {
    margin-top: 0; /* 스크롤되어도 배너의 top 위치는 동일하게 유지 */
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-title {
    position: absolute;
    top: calc(80px + 30%); /* 헤더 높이(80px) 아래 배너 높이의 30% 위치 */
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'KBIZgo_B', 'KBIZ한마음고딕체', sans-serif;
    font-size: 68px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
    white-space: nowrap;
}

/* 헤더가 최상단일 때 배너 타이틀 위치 조정 */
body:not(.header-scrolled) .banner-title {
    top: calc(80px + 30%); /* 헤더 높이(80px) 아래 배너 높이의 30% 위치 */
}

/* 헤더가 스크롤됐을 때도 배너 타이틀 위치 동일하게 유지 */
body.header-scrolled .banner-title {
    top: calc(80px + 30%); /* 헤더 높이(80px) 아래 배너 높이의 30% 위치 */
}

/* 탭 버튼 */
.intro-tabs {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1490px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 2rem 0;
    background-color: #ffffff;
    z-index: 998; /* 배너(z-index: 999) 바로 아래에 배치 */
}

.intro-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 395px;
    height: 70px;
    margin-right: 20px;
    margin-left: 20px;
    border: 2px solid #d5d8db;
    border-radius: 100px;
    background-color: rgba(82, 184, 226, 0);
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.intro-tab:hover {
    border-color: #52b8e2;
    background-color: rgba(82, 184, 226, 0.1);
}

.intro-tab.active {
    background-color: #52b8e2;
    border-color: #52b8e2;
    color: #ffffff;
}

/* 본문 컨텐츠 */
.intro-content {
    max-width: 1312px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

/* 섹션 공통 스타일 */
.intro-section {
    margin-bottom: 6rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-icon {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.section-title {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

/* 섹션 본문 */
.section-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-text {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    color: #000000;
}

.section-text p {
    margin: 0 0 1rem 0;
}

.section-text .highlight {
    font-weight: 700;
}

.section-text .green-text {
    color: #03b44a;
    font-weight: 700;
}

.section-illustration {
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
}

.illustration-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 목표와 과정 패널 */
.process-panels {
    display: grid;
    height: 100%;
    align-items: top;   
    gap: 2rem;
    margin-top: 2rem;
}

.process-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    gap: 1.5rem;
}

.panel-content {
    flex: 1;
}

.panel-title {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.panel-text {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #333333;
    margin: 0;
}

.panel-illustration {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.panel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 필요성 섹션 */
.necessity-content {
    margin-top: 2rem;
}

.necessity-main-title {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 3rem;
    text-align: center;
}

.necessity-panels {
    width: 1312px;
    height: 690px;
    display: block;
}

.necessity-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    height: 100%;
}

.necessity-panel-title {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.necessity-panel-text {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #333333;
    margin: 0;
}

.necessity-illustration {
    width: 100%;
    height: auto;
    overflow: visible;
    border-radius: 8px;
}

.necessity-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* 준비 중 페이지 */
.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon h2 {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

.coming-soon p {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 20px;
    color: #666666;
    margin: 0;
}

/* 국가탄소중립 정책 페이지 스타일 */

.policy-content {
    max-width: 1490px;
    margin: 0 auto;
    padding: 3rem 15px;
}

/* 섹션 라벨 공통 스타일 */
.section-label {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
}

/* 섹션 1: 국가 2050 비전 */
.policy-vision-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.vision-header {
    width: 100%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    background-color: #ffffff;
}

.co2-icon {
    width: 61px;
    height: 61px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.vision-title {
    font-family: 'KBIZgo_B', 'KBIZ한마음고딕체', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    text-align: left;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.policy-vision-banner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 0;
    overflow: hidden;
}

.vision-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(82, 184, 226, 0.9) 0%, rgba(66, 105, 225, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.vision-overlay .vision-title {
    font-family: 'KBIZgo_B', 'KBIZ한마음고딕체', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
}

.vision-description {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

/* 섹션 2: 국가 탄소중립전략 */
.policy-strategy-section {
    margin-bottom: 4rem;
}

.strategy-banners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.strategy-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.strategy-banner-1 {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: #ffffff;
}

.strategy-banner-2 {
    background: linear-gradient(135deg, #20B2AA 0%, #1A9B94 100%);
    color: #ffffff;
}

.strategy-banner-3 {
    background: linear-gradient(135deg, #32CD32 0%, #28A828 100%);
    color: #ffffff;
}

.strategy-banner-4 {
    background: linear-gradient(135deg, #90EE90 0%, #7ACC7A 100%);
    color: #ffffff;
}

.strategy-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.strategy-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.strategy-title {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: inherit;
}

.strategy-desc {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: inherit;
    opacity: 0.9;
}

/* 섹션 3: 감축 목표 */
.policy-target-section {
    margin-bottom: 4rem;
}

.target-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.target-text {
    margin-bottom: 3rem;
    text-align: center;
}

.target-main {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #333333;
    margin: 0;
}

.target-highlight {
    color: #4A90E2;
    font-weight: 700;
}

.target-chart {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    justify-content: center;
}

.target-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.bar-label-top,
.bar-label-bottom {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.5rem;
}

.bar-visual {
    width: 100%;
    height: 120px;
    border-radius: 8px;
}

.target-bar-2018 .bar-visual {
    background: linear-gradient(180deg, #E0E0E0 0%, #BDBDBD 100%);
}

.target-bar-2030 .bar-visual {
    background: linear-gradient(180deg, #4A90E2 0%, #357ABD 100%);
}

.target-arrow {
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-arrow img {
    width: 100%;
    height: auto;
}

/* 섹션 4: 3대 정책방향 */
.policy-directions-section {
    margin-bottom: 4rem;
}

.directions-content {
    margin-top: 2rem;
    position: relative;
}

.directions-title-block {
    background-color: #4A90E2;
    border: 2px solid #ffffff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: inline-block;
    margin-bottom: 3rem;
}

.directions-title-block h3 {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.directions-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 200px;
}

.direction-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.direction-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.direction-1 .direction-icon {
    background: linear-gradient(135deg, #32CD32 0%, #28A828 100%);
}

.direction-2 .direction-icon {
    background: linear-gradient(135deg, #32CD32 0%, #28A828 100%);
}

.direction-3 .direction-icon {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
}

.direction-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.direction-title {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 0.5rem 0;
}

.direction-desc {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* 섹션 5: 2030 NDC */
.policy-ndc-section {
    margin-bottom: 4rem;
}

.ndc-content {
    margin-top: 2rem;
}

.ndc-explanation {
    margin-bottom: 3rem;
}

.ndc-subtitle {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 1rem 0;
}

.ndc-text {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin: 0;
}

.ndc-chart-section {
    margin-top: 3rem;
}

.ndc-chart-title {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 2rem 0;
}

.ndc-chart-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.ndc-chart {
    width: 100%;
}

.ndc-chart-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.ndc-key-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ndc-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ndc-points-list li {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.ndc-points-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: 700;
}

.ndc-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 14px;
    color: #333333;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
}

/* 반응형 디자인 */

/* 태블릿 (768px ~ 1489px) */
@media (min-width: 768px) and (max-width: 1489px) {
    .intro-banner {
        height: 308px;  /* 데스크톱과 동일 (440px * 0.7) */
        margin-top: 0; /* 스크롤되어도 배너의 top 위치는 동일하게 유지 */
    }
    
    .intro-content {
        padding: 3rem 1.5rem;
    }
    
    .banner-title {
        top: 30%; /* 배너 높이의 30% 위치 */
        font-size: 48px;
    }
    
    .intro-tab {
        width: auto;
        min-width: 200px;
        padding: 18px 40px;
        font-size: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-text {
        font-size: 20px;
        line-height: 32px;
    }
    
    .process-panels {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .necessity-panels {
        width: 100%;
        max-width: 1312px;
        height: auto;
    }
    
    /* 정책 페이지 태블릿 스타일 */
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .strategy-banners {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .vision-header {
        padding: 2rem 1.5rem;
        gap: 1rem;
        justify-content: flex-start;
    }
    
    .co2-icon {
        width: 61px;
        height: 61px;
    }
    
    .vision-title {
        font-size: 34px;
        font-weight: 700;
        color: #000000;
    }
    
    .policy-vision-banner {
        min-height: 300px;
    }
    
    .vision-description {
        font-size: 18px;
    }
    
    .target-main {
        font-size: 28px;
    }
    
    .directions-flow {
        padding-left: 150px;
    }
    
    .ndc-chart-wrapper {
        grid-template-columns: 1fr;
    }
}

/* 모바일 (767px 이하) */
@media (max-width: 767px) {
    .intro-banner {
        height: 210px;  /* 300px * 0.7 */
        margin-top: 0; /* 스크롤되어도 배너의 top 위치는 동일하게 유지 */
    }
    
    .banner-title {
        top: 30%; /* 배너 높이의 30% 위치 */
        font-size: 32px;
    }
    
    .intro-tabs {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .intro-tab {
        width: 100%;
        max-width: 350px;
        padding: 16px 32px;
        font-size: 18px;
        height: auto;
    }
    
    .intro-content {
        padding: 2rem 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .section-icon {
        width: 48px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-text {
        font-size: 16px;
        line-height: 28px;
    }
    
    .process-panels {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-panel {
        padding: 1.5rem;
    }
    
    .panel-title {
        font-size: 20px;
    }
    
    .panel-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    .necessity-main-title {
        font-size: 24px;
        margin-bottom: 2rem;
    }
    
    .necessity-panels {
        width: 100%;
        max-width: 1312px;
        height: auto;
    }
    
    .necessity-panel-title {
        font-size: 20px;
    }
    
    .necessity-panel-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    .necessity-illustration {
        height: auto;
    }
    
    /* 정책 페이지 모바일 스타일 */
    .policy-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .policy-tab {
        width: 100%;
        padding: 14px 20px;
        font-size: 20px;
    }
    
    .policy-list {
        font-size: 18px;
        line-height: 32px;
    }
    
    .policy-list li {
        margin-left: 20px;
    }
}

/* 자료실 페이지 스타일 */

/* 자료실 카테고리 컨테이너 */
.resources-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

/* 자료실 카테고리 아이템 (링크 + 설명) */
.resource-category-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 자료실 카테고리 버튼 */
.resource-category {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.resource-category:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

/* 카테고리 설명 */
.resource-category-description {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    padding-left: calc(68.51px + 1.5rem + 1rem); /* 아이콘 너비 + gap + padding */
    margin-top: 0.5rem;
}

.resource-category-description p {
    margin: 0 0 1rem 0;
    padding: 0;
}

.resource-category-description p:last-child {
    margin-bottom: 0;
}

/* 카테고리 아이콘 */
.resource-category-icon {
    width: 68.51px;
    height: 68.51px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* 카테고리 제목 */
.resource-category-title {
    font-family: 'Droid Sans', 'Noto Sans KR', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    line-height: normal;
    white-space: nowrap;
}

/* 반응형 디자인 */
@media (max-width: 767px) {
    .resources-categories {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .resource-category-item {
        gap: 0.75rem;
    }
    
    .resource-category {
        gap: 1rem;
        padding: 0.75rem;
    }
    
    .resource-category-icon {
        width: 50px;
        height: 50px;
    }
    
    .resource-category-title {
        font-size: 24px;
    }
    
    .resource-category-description {
        font-size: 16px;
        padding-left: calc(50px + 1rem + 0.75rem); /* 모바일 아이콘 너비 + gap + padding */
    }
    
    /* 정책 페이지 모바일 스타일 */
    .policy-content {
        padding: 2rem 1rem;
    }
    
    .section-label {
        font-size: 14px;
        padding: 8px 16px;
        margin-bottom: 1.5rem;
    }
    
    .vision-header {
        padding: 1.5rem 1rem;
        gap: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .co2-icon {
        width: 61px;
        height: 61px;
    }
    
    .vision-title {
        font-size: 20px;
        font-weight: 700;
        color: #000000;
        white-space: nowrap;
    }
    
    .policy-vision-banner {
        min-height: 250px;
    }
    
    .vision-description {
        font-size: 14px;
    }
    
    .strategy-banners {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .strategy-banner {
        padding: 1.5rem;
    }
    
    .strategy-icon {
        width: 60px;
        height: 60px;
    }
    
    .strategy-icon img {
        width: 40px;
        height: 40px;
    }
    
    .strategy-title {
        font-size: 18px;
    }
    
    .strategy-desc {
        font-size: 12px;
    }
    
    .target-main {
        font-size: 20px;
    }
    
    .target-chart {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bar-visual {
        height: 80px;
    }
    
    .target-arrow {
        width: 60px;
        height: 30px;
        transform: rotate(90deg);
    }
    
    .directions-title-block {
        padding: 1rem 1.5rem;
    }
    
    .directions-title-block h3 {
        font-size: 18px;
    }
    
    .directions-flow {
        padding-left: 0;
        gap: 1.5rem;
    }
    
    .direction-item {
        flex-direction: column;
        text-align: center;
    }
    
    .direction-icon {
        width: 80px;
        height: 80px;
    }
    
    .direction-icon img {
        width: 50px;
        height: 50px;
    }
    
    .direction-title {
        font-size: 20px;
    }
    
    .direction-desc {
        font-size: 14px;
    }
    
    .ndc-subtitle,
    .ndc-chart-title {
        font-size: 20px;
    }
    
    .ndc-text {
        font-size: 14px;
    }
    
    .ndc-chart-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ndc-points-list li {
        font-size: 14px;
        padding-left: 1.2rem;
    }
    
    .ndc-legend {
        flex-direction: column;
        gap: 0.5rem;
    }
}

