:root {
    --custom-green: #369945;
    --custom-blue: #4a7dbb;
    --custom-yellow: #f89a25;
    --custom-red: #b9355f;
}

.banner-top image {
    width: 100%;
}

.framework-section {
    margin-top: 3rem;
}

.framework-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.framework-image {
    flex: 0 0 600px;
    width: 600px;
}

.framework-image img {
    width: 100%;
    height: auto;
}

.framework-text {
    flex: 1;
}

.framework-text h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.framework-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.goal-item {
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.goal-green {
    background-color: var(--custom-green);
}

.goal-blue {
    background-color: var(--custom-blue);
}

.goal-yellow {
    background-color: var(--custom-yellow);
}

.goal-red {
    background-color: var(--custom-red);
}

@media (max-width: 991.8px) {
    .framework-content {
        flex-direction: column;
        align-items: center;
    }

    .framework-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1199.8px) {
    .framework-content {
        flex-direction: column;
        align-items: center;
    }

    .framework-image {
        flex: 0 0 auto;
        width: min(450px, 100%);
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }
}

.vision-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.vision-text {
    flex: 1;
}

.vision-intro {
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.vision-subtitle {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.vision-card {
    padding: 1rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vision-card h3 {
    font-size: clamp(0.8rem, 0.9vw, 1rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.vision-card p {
    font-size: clamp(0.8rem, 0.9vw, 1rem);
    line-height: 1.5;
    margin: 0;
    text-align: center;
    padding: 20px 10px;
    color: #333;
    height: 11rem;
}

.vision-green {
    background-color: var(--custom-green);
}

.vision-blue {
    background-color: var(--custom-blue);
}

.vision-yellow {
    background-color: var(--custom-yellow);
}

.vision-red {
    background-color: var(--custom-red);
}

.vision-image {
    flex: 0 0 450px;
    width: 450px;
}

.vision-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 991.8px) {
    .vision-content {
        flex-direction: column-reverse;
    }

    .vision-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }
    .vision-card p {
        height: auto;
    }
}

@media (max-width: 1199.8px) {
    .vision-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .vision-image {
        flex: 0 0 auto;
        width: min(100%, 450px);
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .vision-card p {
        height: auto;
    }
}

.works-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.works-image {
    flex: 0 0 auto;
    width: 420px;
}

.works-image img {
    width: 100%;
    height: auto;
}

.works-text {
    flex: 1;
}

.works-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.election-section {
    margin-bottom: 1.5rem;
}

.election-section h4 {
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.national h4 {
    background-color: #b91c1c;
}

.local h4 {
    background-color: var(--custom-green);
}

.election-section p {
    padding: 0 0.5rem;
    line-height: 1.6;
}

.local-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.local-item {
    padding: 1rem 1rem;
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: clamp(0.8rem, 0.9vw, 1rem);
}

.local-green {
    background-color: var(--custom-green);
}

.local-blue {
    background-color: var(--custom-blue);
}

.local-yellow {
    background-color: var(--custom-yellow);
}

.local-red {
    background-color: var(--custom-red);
}

.works-footer {
    margin-top: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .works-content {
        flex-direction: column;
    }

    .works-image {
        width: 100%;
    }

    .local-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .local-grid {
        grid-template-columns: 1fr;
    }
}

.tracking-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.tracking-text {
    flex: 1;
}

.tracking-intro {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tracking-section {
    margin-bottom: 1.5rem;
}

.tracking-section h4 {
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.identification {
    background-color: var(--custom-green);
    padding: 1.5rem;
}

.identification h4 {
    background-color: transparent;
}

.mapping {
    background-color: var(--custom-red);
    padding: 1.5rem;
}

.mapping h4 {
    background-color: transparent;
}

.section-desc {
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: center;
    color: white;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.sector-item {
    background-color: #d4edda;
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--custom-green);
}

.mapping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.mapping-item {
    background-color: #f8d7da;
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--custom-red);
}

.tracking-image {
    flex: 0 0 auto;
    width: 450px;
}

.tracking-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .tracking-content {
        flex-direction: column-reverse;
    }

    .tracking-image {
        width: 100%;
    }

    .sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mapping-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .sector-grid {
        grid-template-columns: 1fr;
    }
}

.status-tracking {
    background-color: var(--custom-green);
    padding: 2rem;
    margin-top: 2rem;
    color: white;
    text-align: center;
}

.status-tracking h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.status-tracking p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.status-grid img {
    width: 100%;
    height: auto;
}

@media (max-width: 1200px) {
    .status-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
}

.data-collection {
    background-color: var(--custom-yellow);
    padding: 2rem;
    margin-top: 2rem;
    color: white;
    text-align: center;
}

.data-collection h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.data-collection p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.data-sources {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.source-item {
    background-color: white;
    color: #333;
    padding: 1.5rem 1rem;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 1200px) {
    .data-sources {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .data-sources {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .data-sources {
        grid-template-columns: 1fr;
    }
}

.dashboard-visualization {
    background-color: var(--custom-green);
    padding: 2rem;
    margin-top: 2rem;
    color: white;
    text-align: center;
}

.dashboard-visualization h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dashboard-visualization p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.dashboard-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-item img {
    width: 100%;
    height: auto;
    background-color: white;
    padding: 1rem;
}

.dashboard-caption {
    padding: 1rem;
    font-weight: 700;
    text-align: center;
    color: #333;
    height: 6rem;
}

.caption-blue {
    background-color: #b3d9ff;
}

.caption-red {
    background-color: #ffb3c1;
}

.caption-yellow {
    background-color: #ffd699;
}

.caption-green {
    background-color: #b3ffb3;
}

@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.stages-intro {
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.implementation-stages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stage-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    border: 3px solid var(--custom-green);
    background-color: #eeffef;
}

.stage-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stage-content {
    padding: 1rem 1.5rem;
}

.stage-content p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.example-label {
    font-weight: 700;
    margin-top: 0.75rem;
}

@media (max-width: 768px) {
    .stage-item {
        grid-template-columns: 1fr;
    }
}

.accountability-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.accountability-text {
    flex: 1;
}

.accountability-intro {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.accountability-item {
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    color: white;
    text-align: center;
}

.accountability-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.accountability-item p {
    margin: 0;
    line-height: 1.6;
}

.item-green {
    background-color: var(--custom-green);
}

.item-blue {
    background-color: var(--custom-blue);
}

.item-yellow {
    background-color: var(--custom-yellow);
}

.item-red {
    background-color: var(--custom-red);
}

.accountability-image {
    flex: 0 0 auto;
    width: 450px;
}

.accountability-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .accountability-content {
        flex-direction: column-reverse;
    }

    .accountability-image {
        width: 100%;
    }
}

.indicator-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.indicator-row {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 0.5rem;
}

.indicator-cell,
.description-cell,
.score-cell {
    padding: 1rem;
    font-weight: 600;
}

.header-row .indicator-cell,
.header-row .description-cell,
.header-row .score-cell {
    background-color: var(--custom-yellow);
    color: white;
    font-weight: 700;
    text-align: center;
}

.indicator-row:not(.header-row) .indicator-cell,
.indicator-row:not(.header-row) .description-cell,
.indicator-row:not(.header-row) .score-cell {
    background-color: #ffd699;
}

.score-cell {
    text-align: center;
    min-width: 100px;
}

.indicator-footer {
    text-align: center;
    line-height: 1.6;
    margin-top: 1rem;
}

@media (max-width: 450px) {
    .indicator-table {
        overflow: scroll;
    }

    .indicator-cell {
        width: 35vw;
    }

    .description-cell {
        width: 35vw;
    }

    .score-cell {
        width: 20vw;
    }
}

.results-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.results-image {
    flex: 0 0 585px;
    width: 380px;
}

.results-image img {
    width: 100%;
    height: auto;
}

.results-text {
    flex: 1;
}

.results-intro {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 600;
}

.result-item {
    margin-bottom: 0.5rem;
}

.result-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding: 1rem 1.5rem;
    color: #ffffff;
    text-align: center;
}

.result-item p {
    margin: 0;
    line-height: 1.6;
}

.result-green {
    background-color: var(--custom-green);
}

.result-blue {
    background-color: var(--custom-blue);
}

.result-yellow {
    background-color: var(--custom-yellow);
}

.result-red {
    background-color: var(--custom-red);
}

.result-dark-red {
    background-color: #8b0000;
}

@media (max-width: 992px) {
    .results-content {
        flex-direction: column;
        align-items: center;
    }

    .results-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 1199.8px) {
    .results-content {
        flex-direction: column;
        align-items: center;
    }

    .results-image {
        flex: 0 0 auto;
        width: min(100%, 585px);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-section {
    display: flex;
    flex-direction: column;
}

.benefit-header {
    padding: 0.75rem 1rem;
    color: white;
    font-weight: 700;
    text-align: center;
}

.header-green {
    background-color: var(--custom-green);
}

.header-blue {
    background-color: var(--custom-blue);
}

.header-yellow {
    background-color: var(--custom-yellow);
}

.header-red {
    background-color: var(--custom-red);
}

.benefit-content {
    padding: 1rem;
    flex: 1;
}

.benefit-content p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
}

.benefit-content p:last-child {
    margin-bottom: 0;
}

.content-green {
    background-color: #d4edda;
}

.content-blue {
    background-color: #cfe2ff;
}

.content-yellow {
    background-color: #ffd699;
}

.content-red {
    background-color: #ffb3c1;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
