.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 1000;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}


.first-section {
    margin-top: 100px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 92px 0;
    background-image: url('../images/Rectangle 163.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: darken;
}

.first-title {
    color: white;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 50px;
    text-align: center;
    margin: 0;
}

.stats-section {
    /* background-color: var(--bg-light-gray); */
}

@media (max-width: 768px) {
    .first-section {
        padding: 60px 0;
    }

    .first-title {
        font-size: 40px;
    }
}

.newstats-section {
    padding-top: 60px;
    padding-bottom: 20px;
    position: relative;
}

.newstats-container {
    display: flex;
    justify-content: center;
    gap: 46px;
}

.newstat-card {
    flex: 1;
    padding: 18px 20px 24px;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    max-width: 567px;
}

.location-card {
    position: relative;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 40%;
    margin: 0 auto;
}

.total-umkm-card {
    background-color: #00a652;
    color: #ffffff;
}

.growth-index-card {
    background-color: #ffffff;
    color: #191a15;
}

.newstat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.newstat-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}

.newstat-year {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    margin: 0;
}

.newstat-value {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 0.6;
    margin: 0;
}

@media (max-width: 992px) {
    .newstats-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .newstat-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .newstat-value {
        font-size: 48px;
    }

    .newstat-title {
        font-size: 20px;
    }

    .newstat-card-header {
        flex-direction: column;
        gap: 5px;
    }
}

.chart-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.chart-wrapper-alone {
    position: relative;
    height: 550px;
    width: 100%;
    margin: 0 auto;
}

.chart-wrapper {
    position: relative;
    height: 350px;
    width: 100%;
    margin: 0 auto;
}

.sectors-section {
    padding: 20px 0 60px;
}

.sectors-section .section-title {
    margin-bottom: 60px;
    text-align: center;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
}

.sector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 14px;
    border: 2px solid rgb(248, 157, 42);
    border-radius: 20px;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}

.sector-item:hover {
    background-color: #fff7ed;
    transform: translateY(-5px);
}

.sector-item img {
    width: 80%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    margin-top: auto;
}

.sector-item p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: auto;
}

@media (max-width: 1200px) {
    .sectors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
