@font-face  {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face  {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face  {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
}
*  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body  {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #F5F7FA;
    color: #445265;
    line-height: 1.6;
}
.navbar  {
    background: #fff;
    padding: 15px 60px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.nav-container  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.logo-container  {
    display: flex;
    align-items: center;
}
.logo-img  {
    height: 45px;
    width: auto;
}
.nav-links  {
    list-style: none;
    display: flex;
    gap: 12px;
}
.nav-links a  {
    width: 105px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #445265;
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.3s;
}
.nav-links a:hover,.nav-links a.active  {
    color: #3F75BA;
    font-weight: 600;
}
.lang-switch  {
    display: flex;
    gap: 10px;
}
.lang  {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}
.lang:hover  {
    background: #3F75BA;
    color: white;
    transform: scale(1.05);
}
.active-lang  {
    background: #3F75BA;
    color: white;
}
.hero  {
    background: linear-gradient(rgba(63,117,186,0.85), rgba(63,117,186,0.85)), url('../images/hero-bg.jpg') center/cover;
    padding: 120px 20px;
    text-align: center;
    color: white;
}
.hero h1  {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.hero-buttons  {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.btn-news  {
    background: rgba(255,255,255,0.7);
    color: #445265;
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-news:hover  {
    background: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.9);
}
.btn  {
    display: inline-block;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
}
.btn-outline  {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-outline:hover  {
    background: white;
    color: #3F75BA;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.btn-primary  {
    background: #3F75BA;
    color: white;
    border: none;
}
.btn-primary:hover  {
    background: #2E5688;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(63,117,186,0.3);
}
.section  {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-title  {
    font-size: 36px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 20px;
    position: relative;
}
.section-title:after  {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #3F75BA;
    border-radius: 2px;
}
.section-subtitle  {
    font-size: 20px;
    margin-bottom: 30px;
    color: #445265;
}
.cards-container  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.card  {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}
.card:hover  {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.card-body  {
    padding: 30px;
}
.card h3  {
    color: #3F75BA;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}
.card p  {
    color: #445265;
    line-height: 1.7;
}
.cta-section  {
    background: linear-gradient(rgba(63,117,186,0.9), rgba(63,117,186,0.9)), url('../images/cta-bg.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
    margin: 40px 0;
}
.cta-content h2  {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.news-grid  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.news-card  {   
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.news-card:hover  {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.news-image  {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.news-content  {
    padding: 25px;
}
.news-content h3  {
    color: #3F75BA;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.news-content p  {
    color: #445265;
    line-height: 1.6;
    font-size: 15px;
}
.stats-grid  {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.stat-card  {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    text-align: left;
}
.stat-card:hover  {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.stat-number  {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 15px;
}
.stat-label  {
    font-size: 16px;
    color: #445265;
    line-height: 1.6;
}
.how-it-works  {
    background: #ffffff;
    border-radius: 30px;
    margin: 40px 60px;
    padding: 60px;
}
.steps-container  {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.step-card  {
    background: #f5f7fa;
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid transparent;
}
.step-card:hover  {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.step-card.active  {
    border-color: #3F75BA;
    box-shadow: 0 10px 30px rgba(63,117,186,0.15);
}
.step-number  {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #445265;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.step-content h3  {
    color: #445265;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.step-content p  {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
.footer  {
    background: #3F75BA;
    color: white;
    padding: 60px 60px 30px;
    margin-top: 80px;
}
.footer-container  {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
.footer-col h3  {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-col p  {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}
.footer-col ul  {
    list-style: none;
}
.footer-col li  {
    margin-bottom: 12px;
}
.footer-col a  {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.footer-col a:hover  {
    opacity: 1;
    text-decoration: underline;
}
.footer-bottom  {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}
@media(max-width: 1200px)  {
    .cards-container, .news-grid, .stats-grid, .steps-container  {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-it-works  {
        margin: 40px 30px;
        padding: 40px 30px;
    }
}
@media(max-width: 900px)  {
    .navbar  {
        padding: 15px 30px;
    }
    .nav-links  {
        display: none;
    }
    .section  {
        padding: 60px 30px;
    }
    .hero h1  {
        font-size: 42px;
    }
    .hero-buttons  {
        flex-direction: column;
        gap: 15px;
        max-width: 250px;
        margin: 0 auto;
    }
    .btn  {
        width: 100%;
    }
    .cta-content h2  {
        font-size: 36px;
    }
    .footer-container  {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media(max-width: 600px)  {
    .cards-container, .news-grid, .stats-grid, .steps-container  {
        grid-template-columns: 1fr;
    }
    .hero h1  {
        font-size: 32px;
    }
    .section-title  {
        font-size: 28px;
    }
    .cta-content h2  {
        font-size: 28px;
    }
    .stat-number  {
        font-size: 36px;
    }
    .how-it-works  {
        margin: 20px;
        padding: 30px 20px;
    }
}
.about-hero  {
    background: linear-gradient(rgba(63,117,186,0.85), rgba(63,117,186,0.85)), #ccc;
    padding: 100px 60px;
    color: white;
    text-align: center;
}
.about-hero-content  {
    max-width: 1000px;
    margin: 0 auto;
}
.about-hero h1  {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}
.hero-text  {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}
.about-images-row  {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
    background: #3F75BA;
}
.about-images-row .image-card  {
    width: 250px;
    height: 160px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.about-images-row .image-card img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-overview  {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.mission-vision-section  {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: start;
    padding: 60px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.mission-left  {
    position: relative;
    padding-left: 30px;
}
.mission-left::before  {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #3F75BA;
}
.mission-left .section-title  {
    color: #3F75BA;
    margin-bottom: 30px;
}
.mission-right  {
    max-width: 700px;
}
.mission-right .regular-text  {
    margin-bottom: 30px;
    color: #445265;
    font-size: 16px;
    line-height: 1.7;
}
.why-section  {
    background: #3F75BA;
    color: white;
    padding: 60px 60px;
}
.why-section .light  {
    color: white;
}
.why-content  {
    max-width: 1000px;
    margin: 0 auto;
}
.why-overview  {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
}
.why-title  {
    position: relative;
}
.why-title .section-title  {
    padding-right: 24px;
}
.why-title .section-title:after  {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 24px;
    background: #d0dceb;
}
@media (max-width: 900px)  {
    .about-images-row  {
        flex-direction: column;
        align-items: center;
    }
    .about-overview, .mission-vision-section, .why-overview, .approach-section, .resources-section  {
        grid-template-columns: 1fr;
    }
    .approach-section  {
        gap: 40px;
    }
    .mission-left::before  {
        display: none;
    }
}
.content-section  {
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    border-bottom: 1px solid #eef2f6;
}
.content-section:last-child  {
    border-bottom: none;
}
.section-title  {
    font-size: 32px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 20px;
}
.regular-text  {
    font-size: 18px;
    line-height: 1.8;
    color: #445265;
}
.subsection-heading  {
    font-size: 18px;
    font-weight: 600;
    color: #3F75BA;
    margin: 30px 0 20px;
}
.work-list  {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.work-item  {
    background: #f0f3f7;
    padding: 18px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3F75BA;
    font-size: 16px;
    font-weight: 500;
}
.work-text  {
    flex: 1;
}
.work-arrow  {
    color: #3F75BA;
    font-size: 20px;
    margin-left: 15px;
}
.mission-vision-section .subsection-heading  {
    font-size: 18px;
    font-weight: 500;
    color: #445265;
    margin: 36px auto 18px;
    max-width: 1100px;
}
.mission-vision-section .work-list  {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}
.mission-vision-section .work-item  {
    background: #ececee;
    border-radius: 999px;
    min-height: 80px;
    padding: 16px 14px 16px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mission-vision-section .work-text  {
    color: #445265;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.22;
    padding-right: 18px;
}
.mission-vision-section .work-arrow  {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f4f4f4;
    color: #3F75BA;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0;
    margin-left: 0;
}
.mission-vision-section .work-arrow::before  {
    content: "\2197";
    font-size: 25px;
    line-height: 1;
}
@media (max-width: 900px)  {
    .mission-vision-section .subsection-heading  {
        font-size: 18px;
    }
    .mission-vision-section .work-item  {
        border-radius: 34px;
        min-height: 74px;
        padding: 14px 12px 14px 24px;
    }
    .mission-vision-section .work-text  {
        font-size: 17px;
    }
    .mission-vision-section .work-arrow  {
        width: 46px;
        height: 46px;
    }
    .mission-vision-section .work-arrow::before  {
        font-size: 23px;
    }
}
@media (max-width: 600px)  {
    .mission-vision-section .subsection-heading  {
        font-size: 17px;
    }
    .mission-vision-section .work-item  {
        border-radius: 28px;
        min-height: 66px;
        padding: 12px 10px 12px 18px;
    }
    .mission-vision-section .work-text  {
        font-size: 16px;
    }
    .mission-vision-section .work-arrow  {
        width: 40px;
        height: 40px;
    }
    .mission-vision-section .work-arrow::before  {
        font-size: 20px;
    }
}
.about-overview,.mission-vision-block  {
    display: grid;
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 54px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.about-overview  {
    padding: 72px 60px;
}
.mission-vision-section  {
    display: block;
    max-width: 1200px;
    padding: 72px 60px;
}
.mission-vision-block + .mission-vision-block  {
    margin-top: 36px;
}
.overview-right,.mission-right  {
    border-left: 2px solid #aebfd6;
    padding-left: 34px;
    max-width: 740px;
}
.mission-left  {
    padding-left: 0;
}
.mission-left::before  {
    display: none;
}
.split-title  {
    margin: 0;
    font-size: 44px;
    line-height: 1.03;
    letter-spacing: -0.01em;
    color: #3F75BA;
}
.split-title.section-title:after  {
    display: none;
}
.about-overview .regular-text,.mission-right .regular-text  {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #445265;
}
.mission-vision-section .subsection-heading  {
    margin: 44px auto 20px;
    max-width: 1100px;
}
.mission-vision-section .work-list  {
    max-width: 1100px;
    margin: 0 auto;
}
.why-section  {
    background: radial-gradient(120px 120px at 5% 55%, rgba(255,255,255,0.28), rgba(255,255,255,0) 70%), radial-gradient(140px 140px at 55% 65%, rgba(255,255,255,0.16), rgba(255,255,255,0) 70%), linear-gradient(135deg, #3b71b5 0%, #4b7fc1 100%);
    color: #ffffff;
    padding: 72px 60px;
}
.why-overview  {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 300px);
    gap: 54px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.why-text .regular-text.light  {
    margin: 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.45;
}
.why-title .section-title.light  {
    margin: 0;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.05;
    text-align: right;
}
.why-title .section-title:after,.why-title .section-title::after  {
    content: none !important;
    display: none !important;
}
@media (max-width: 900px)  {
    .about-overview, .mission-vision-block  {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .about-overview, .mission-vision-section  {
        padding: 50px 30px;
    }
    .overview-right, .mission-right  {
        border-left: 0;
        border-top: 2px solid #aebfd6;
        padding-left: 0;
        padding-top: 20px;
    }
    .split-title  {
        font-size: 34px;
    }
    .why-section  {
        padding: 50px 30px;
    }
    .why-overview  {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .why-title .section-title.light  {
        text-align: left;
        font-size: 34px;
    }
}
.mission-bullets  {
    list-style: none;
    margin-top: 20px;
}
.mission-bullets li  {
    font-size: 18px;
    color: #445265;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}
.mission-bullets li:before  {
    content: "•";
    color: #3F75BA;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 22px;
}
.next-chapter-block  {
    background: linear-gradient(180deg, #8fa9c8 0%, #a8bbd0 55%, #bcc9d8 100%);
    padding: 64px 20px 72px;
    text-align: center;
    color: white;
}
.next-chapter-title  {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 10px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.next-chapter-subtitle  {
    font-size: 31px;
    color: rgba(255,255,255,0.93);
    margin-bottom: 24px;
}
.cta-btn  {
    display: inline-block;
    padding: 12px 42px;
    background: #3F75BA;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 22px;
    line-height: 1;
}
.cta-btn:hover  {
    background: #2f5f98;
}
.approach-section  {
    display: grid;
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 54px;
    align-items: start;
    padding: 72px 60px;
    max-width: 1100px;
    margin: 0 auto;
}
.approach-left  {
    max-width: 300px;
}
.approach-left .section-title  {
    margin: 0 0 10px;
    color: #445265;
}
.approach-left .section-title:after  {
    display: none;
}
.approach-left .regular-text  {
    font-size: 14px;
    color: #445265;
    line-height: 1.45;
    margin: 0;
}
.approach-right  {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 2px;
}
.approach-item  {
    background: #ececee;
    padding: 20px 28px;
    border-radius: 14px;
    display: block;
    max-width: 640px;
}
.approach-number  {
    display: none;
}
.approach-01,.approach-03  {
    margin-left: 46px;
}
.approach-content h4  {
    font-size: 18px;
    font-weight: 500;
    color: #3F75BA;
    margin: 0 0 8px;
    line-height: 1.2;
}
.approach-content p  {
    font-size: 14px;
    color: #445265;
    line-height: 1.45;
    margin: 0;
    max-width: 510px;
}
@media (max-width: 900px)  {
    .approach-01, .approach-03  {
        margin-left: 0;
    }
}
.progress-section  {
    background: #4C78B8;
    padding: 100px 60px;
    text-align: center;
    color: white;
    margin: 0;
}
.progress-main-title  {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}
.progress-description  {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 50px;
}
.progress-timeline-wrapper  {
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
}
.progress-timeline-container  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 0;
}
.timeline-year  {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    flex: 0 0 auto;
    width: 60px;
    text-align: left;
}
.progress-timeline-container .timeline-month  {
    flex: 1;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}
.progress-timeline-container .timeline-month.active  {
    color: white;
    font-weight: 700;
}
.timeline-line  {
    width: 100%;
    height: 40px;
}
.see-progress-btn  {
    display: inline-block;
    background: white;
    color: #3F75BA;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.see-progress-btn:hover  {
    background: rgba(255,255,255,0.9);
}
.resources-section  {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: flex-start;
    padding: 60px 60px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}
.resources-title  {
    font-size: 32px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 15px;
}
.resources-description  {
    font-size: 16px;
    color: #6B7C9A;
    margin-bottom: 25px;
    line-height: 1.6;
}
.resources-links  {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}
.resource-link  {
    color: #3F75BA;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}
.resource-link:hover  {
    opacity: 0.8;
}
.resources-right  {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.resource-icon  {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #3F75BA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #3F75BA;
    text-decoration: none;
    background: transparent;
    transition: 0.3s;
}
.resource-icon:hover  {
    background: #f0f3f7;
}
.progress-inner  {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}
.progress-status-card  {
    background: white;
    color: #1F3E72;
    padding: 18px 22px;
    border-radius: 12px;
    display: inline-block;
    text-align: left;
    margin: 24px auto 40px auto;
    min-width: 320px;
}
.progress-status-card .status-title  {
    font-weight: 700;
    margin-bottom: 6px;
}
.progress-status-card .status-text  {
    color: #445265;
    font-size: 14px;
}
.progress-timeline-container  {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 20px 10px;
}
.progress-timeline-container::before  {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.35);
    transform: translateY(-50%);
}
.timeline-item  {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 10px 6px;
}
.timeline-dot  {
    width: 14px;
    height: 14px;
    background: #E84D8A;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    top: 0;
}
.timeline-month  {
    margin-top: 12px;
    font-size: 16px;
    color: rgba(255,255,255,0.95);
}
.timeline-item.active .timeline-dot  {
    width: 18px;
    height: 18px;
    background: white;
    border: 4px solid #E84D8A;
}
.upgrades-list  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.upgrade-item  {
    background: white;
    color: #1F3E72;
    padding: 18px;
    border-radius: 10px;
    text-align: left;
}
.upgrade-item .upgrade-month  {
    font-size: 16px;
    margin-bottom: 8px;
}
.upgrade-text  {
    color: #445265;
    font-size: 14px;
}
.see-progress-btn  {
    display: inline-block;
    padding: 15px 45px;
    background: #3F75BA;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid #3F75BA;
}
.see-progress-btn:hover  {
    background: white;
    color: #3F75BA;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(63,117,186,0.2);
}
.resources-links  {
    list-style: none;
    margin-top: 25px;
}
.resources-links li  {
    margin-bottom: 12px;
}
.resources-links a  {
    color: #3F75BA;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}
.resources-links a:hover  {
    color: #1E3A5F;
    text-decoration: underline;
}
@media(max-width: 900px)  {
    .about-hero  {
        padding: 70px 30px;
    }
    .about-hero h1  {
        font-size: 32px;
    }
    .hero-text  {
        font-size: 18px;
    }
    .content-section  {
        padding: 50px 30px;
    }
    .section-title  {
        font-size: 28px;
    }
    .next-chapter-title  {
        font-size: 28px;
    }
    .progress-section  {
        margin: 30px;
        padding: 50px 30px;
    }
    .progress-timeline-container  {
        flex-direction: column;
        gap: 25px;
    }
    .timeline-middle-line  {
        width: 2px;
        height: 30px;
        margin: 10px 0;
    }
    .timeline-year  {
        padding-right: 0;
        padding-bottom: 10px;
    }
}
@media(max-width: 600px)  {
    .about-hero h1  {
        font-size: 26px;
    }
    .section-title  {
        font-size: 26px;
    }
    .regular-text  {
        font-size: 16px;
    }
    .progress-main-title  {
        font-size: 28px;
    }
    .see-progress-btn  {
        padding: 12px 35px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
}
.progress-hero  {
    background: linear-gradient(rgba(63,117,186,0.85), rgba(63,117,186,0.85)), #ccc;
    padding: 80px 60px;
    text-align: center;
}
.progress-hero-title  {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-transform: lowercase;
}
.progress-check-main  {
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}
.progress-description  {
    font-size: 18px;
    color: #445265;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 800px;
}
.pullet-container  {
    margin: 20px 0 30px;
}
.pullet-label  {
    font-size: 16px;
    color: #3F75BA;
    font-weight: 600;
    text-transform: uppercase;
}
.progress-status-card  {
    background: #F0F7FF;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #3F75BA;
}
.status-title  {
    font-size: 24px;
    font-weight: 700;
    color: #3aae48;
    margin-bottom: 10px;
}
.status-text  {
    font-size: 18px;
    color: #3aae48;
}
.plan-message  {
    font-size: 20px;
    color: #3F75BA;
    font-weight: 600;
    margin: 40px 0;
    padding: 20px;
    background: #F8FAFE;
    border-radius: 10px;
    text-align: center;
}
.upgrades-section  {
    padding: 60px;
    background: #F8FAFE;
    margin: 40px 0;
}
.upgrades-title  {
    font-size: 32px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 40px;
}
.upgrade-item  {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #d0dceb;
}
.upgrade-item:last-child  {
    border-bottom: none;
}
.upgrade-month  {
    font-size: 22px;
    font-weight: 600;
    color: #3F75BA;
    margin-bottom: 15px;
}
.upgrade-text  {
    font-size: 16px;
    color: #445265;
    line-height: 1.7;
    max-width: 900px;
}
.grievance-subtitle  {
    font-size: 22px;
    font-weight: 600;
    color: #3F75BA;
    margin-bottom: 15px;
}
.grievance-text  {
    font-size: 16px;
    color: #445265;
    line-height: 1.7;
    margin-bottom: 20px;
}
.grievance-btn, .contact-btn  {
    display: inline-block;
    padding: 12px 30px;
    background: #3F75BA;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid #3F75BA;
}
.grievance-btn:hover, .contact-btn:hover  {
    background: white;
    color: #3F75BA;
    transform: translateY(-2px);
}
.contact-btn  {
    background: transparent;
    color: #3F75BA;
}
.contact-btn:hover  {
    background: #3F75BA;
    color: white;
}
.news-title  {
    font-size: 32px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 30px;
}
.news-category  {
    font-size: 22px;
    font-weight: 600;
    color: #3F75BA;
    margin-bottom: 20px;
}
.news-items  {
    list-style: none;
}
.news-items li  {
    font-size: 16px;
    color: #445265;
    padding: 10px 0;
    border-bottom: 1px solid #d0dceb;
    position: relative;
    padding-left: 20px;
}
.news-items li:before  {
    content: "•";
    color: #3F75BA;
    position: absolute;
    left: 0;
    font-size: 18px;
}
.news-items li:last-child  {
    border-bottom: none;
}
.grievance-hero  {
    background: linear-gradient(rgba(63,117,186,0.85), rgba(63,117,186,0.85)), #ccc;
    padding: 80px 60px;
    text-align: center;
}
.grievance-hero-title  {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-transform: lowercase;
}
.submit-grievance-section  {
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.grievance-container  {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
.grievance-section-title  {
    font-size: 28px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 20px;
}
.grievance-form-text  {
    font-size: 16px;
    color: #445265;
    line-height: 1.7;
    margin-bottom: 30px;
}
.submit-grievance-btn  {
    display: block;
    margin: 20px auto 0;
}
.grievance-form  {
    background: #F8FAFE;
    padding: 30px;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
}
.form-group  {
    margin-bottom: 20px;
}
.form-group label  {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #3F75BA;
    margin-bottom: 8px;
}
.form-group input,.form-group select,.form-group textarea  {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0dceb;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus  {
    outline: none;
    border-color: #3F75BA;
}
.submit-grievance-btn  {
    width: 100%;
    padding: 14px;
    background: #3F75BA;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}
.submit-grievance-btn:hover  {
    background: #2E5688;
    transform: translateY(-2px);
}
.handling-steps  {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.handling-step  {
    background: #F0F7FF;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}
.step-number  {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 8px;
}
.step-text  {
    font-size: 14px;
    color: #445265;
}
.contact-us-btn  {
    display: inline-block;
    padding: 12px 30px;
    background: #3F75BA;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}
.contact-us-btn:hover  {
    background: #2E5688;
    transform: translateY(-2px);
}
.related-news-section  {
    padding: 60px;
    background: #F0F7FF;
}
.related-news-title  {
    font-size: 28px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 30px;
}
.related-news-grid  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.related-news-item  {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.related-news-item h3  {
    font-size: 18px;
    font-weight: 600;
    color: #3F75BA;
    margin-bottom: 10px;
}
.related-news-item p  {
    font-size: 14px;
    color: #445265;
}
.news-hero  {
    background: linear-gradient(rgba(63,117,186,0.85), rgba(63,117,186,0.85)), #ccc;
    padding: 80px 60px;
    text-align: center;
}
.news-hero-title  {
    font-size: 48px;
    font-weight: 700;
    color: white;
}
.news-categories-section  {
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.news-category-block  {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eef2f6;
}
.news-category-block:last-child  {
    border-bottom: none;
}
.news-category-title  {
    font-size: 24px;
    font-weight: 600;
    color: #3F75BA;
    margin-bottom: 10px;
}
.news-date  {
    font-size: 14px;
    color: #BA8F3F;
    font-weight: 500;
    margin-bottom: 10px;
}
.news-summary  {
    font-size: 16px;
    color: #445265;
    line-height: 1.6;
}
.dashboard-section  {
    padding: 30px 60px 60px;
    text-align: center;
}
.dashboard-link  {
    display: inline-block;
    padding: 12px 30px;
    background: #3F75BA;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}
.dashboard-link:hover  {
    background: #2E5688;
    transform: translateY(-2px);
}
@media(max-width: 900px)  {
    .grievance-container  {
        grid-template-columns: 1fr;
    }
    .timeline-months  {
        flex-wrap: wrap;
        gap: 20px;
    }
    .related-news-grid  {
        grid-template-columns: 1fr;
    }
    .handling-steps  {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 600px)  {
    .progress-hero-title, .grievance-hero-title, .news-hero-title  {
        font-size: 36px;
    }
    .upgrades-title  {
        font-size: 26px;
    }
    .upgrade-month  {
        font-size: 18px;
    }
}
.municipality-tags  {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0 20px;
}
.municipality-tag  {
    background: #eef2f6;
    color: #3F75BA;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
}
.progress-status-card  {
    background: #F0F7FF;
    padding: 25px 30px;
    border-radius: 12px;
    margin: 30px 0 40px;
    border-left: 4px solid #3F75BA;
}
.status-title  {
    font-size: 24px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 8px;
}
.status-text  {
    font-size: 18px;
    color: #445265;
}
.timeline-2026  {
    margin: 50px 0;
    text-align: left;
}
.timeline-header  {
    font-size: 28px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 20px;
}
.timeline-months  {
    display: flex;
    gap: 40px;
    font-size: 20px;
    font-weight: 600;
    color: #445265;
    margin-bottom: 20px;
    border-bottom: 2px solid #d0dceb;
    padding-bottom: 15px;
}
.timeline-description  {
    font-size: 16px;
    color: #445265;
    line-height: 1.7;
    max-width: 800px;
}
.grievance-container  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.grievance-form-container  {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.grievance-section-title  {
    font-size: 28px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 20px;
}
.grievance-form-text  {
    font-size: 16px;
    color: #445265;
    margin-bottom: 30px;
    line-height: 1.6;
}
.form-row  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.grievance-form .form-group  {
    margin-bottom: 20px;
}
.grievance-form label  {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #3F75BA;
    margin-bottom: 6px;
}
.grievance-form label span  {
    font-weight: 400;
    color: #6c7a8a;
    font-size: 14px;
}
.grievance-form input,.grievance-form select,.grievance-form textarea  {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0dceb;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    transition: border 0.3s;
}
.grievance-form input:focus,.grievance-form select:focus,.grievance-form textarea:focus  {
    outline: none;
    border-color: #3F75BA;
}
.grievance-form input[type="file"]  {
    padding: 8px;
    border: 1px dashed #3F75BA;
    background: #f9fcff;
}
.submit-grievance-btn  {
    width: 100%;
    padding: 14px;
    background: #3F75BA;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}
.submit-grievance-btn:hover  {
    background: #2E5688;
    transform: translateY(-2px);
}
.handling-list  {
    list-style: none;
    margin: 20px 0;
}
.handling-list li  {
    font-size: 16px;
    color: #445265;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #eef2f6;
}
.handling-list li:last-child  {
    border-bottom: none;
}
.handling-list li:before  {
    content: "✓";
    color: #3F75BA;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}
@media (max-width: 900px)  {
    .grievance-container  {
        grid-template-columns: 1fr;
    }
    .form-row  {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .timeline-months  {
        flex-wrap: wrap;
        gap: 20px;
    }
    .municipality-tags  {
        justify-content: center;
    }
}
@media (max-width: 600px)  {
    .news-list-section  {
        padding: 30px 20px;
    }
    .news-item  {
        padding: 20px;
    }
    .news-item-title  {
        font-size: 20px;
    }
}
.municipality-name  {
    font-size: 20px;
    color: #445265;
    margin: 20px 0 10px;
}
.progress-status-card  {
    background: #F0F7FF;
    padding: 25px 30px;
    border-radius: 12px;
    margin: 20px auto 40px;
    max-width: 600px;
    border-left: 4px solid #3aae48;
    position: relative;
}
.progress-bar  {
    margin-top: 15px;
    background: #e1e7ed;
    border-radius: 6px;
    height: 8px;
    overflow: hidden;
}
.progress-fill  {
    height: 100%;
    background: #3aae48;
    transition: width 0.3s;
}
.status-title  {
    font-size: 24px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 8px;
}
.status-text  {
    font-size: 18px;
    color: #445265;
}
.timeline-2026  {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0 30px;
}
.timeline-2026 .timeline-year  {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 28px;
    font-weight: 700;
    color: #3F75BA;
    white-space: nowrap;
    position: relative;
    margin-right: 20px;
}
.timeline-2026 .timeline-year:after  {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #d0dceb;
}
.timeline-2026 .timeline-content  {
    flex: 1;
    text-align: center;
}
.timeline-months  {
    display: flex;
    gap: 40px;
    font-size: 20px;
    font-weight: 600;
    color: #445265;
    margin-bottom: 15px;
    border-bottom: 2px solid #d0dceb;
    padding-bottom: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.timeline-description  {
    font-size: 16px;
    color: #445265;
    line-height: 1.7;
    max-width: 800px;
    margin-top: 10px;
}
.municipality-selector  {
    display: flex;
    gap: 12px;
    margin: 30px 0 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.municipality-button  {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid #3F75BA;
    background: #fff;
    color: #3F75BA;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}
.municipality-button:hover  {
    background: #f0f7ff;
}
.municipality-button.active  {
    background: #3F75BA;
    color: #fff;
}
.month-item  {
    position: relative;
    padding-bottom: 12px;
    font-size: 18px;
    font-weight: 500;
    color: #445265;
}
.month-item:after  {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #d0dceb;
    border-radius: 50%;
}
.month-item.active  {
    color: #3aae48;
    font-weight: 700;
}
.month-item.active:after  {
    background: #3aae48;
    width: 10px;
    height: 10px;
}
.upgrade-item  {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eef2f6;
}
.upgrade-item:last-child  {
    border-bottom: none;
}
.upgrade-month  {
    font-size: 22px;
    font-weight: 600;
    color: #3F75BA;
    margin-bottom: 10px;
    position: relative;
    padding-right: 24px;
}
.upgrade-arrow  {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #3F75BA;
}
.upgrade-text  {
    font-size: 16px;
    color: #445265;
    line-height: 1.7;
}
.news-list-section  {
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
}
.news-items-container  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.news-item  {
    background: white;
    padding: 30px 40px 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
}
.news-item:before  {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    background: #3F75BA;
    border-radius: 2px;
}
.news-item:hover  {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.news-date  {
    font-size: 15px;
    font-weight: 600;
    color: #3F75BA;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news-item-title  {
    font-size: 22px;
    font-weight: 700;
    color: #3F75BA;
    margin-bottom: 15px;
}
.news-item-description  {
    font-size: 16px;
    color: #445265;
    line-height: 1.7;
    margin-bottom: 20px;
}
.news-more-link  {
    display: inline-block;
    color: #3F75BA;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}
.news-more-link:hover  {
    border-bottom-color: #3F75BA;
}
@media (max-width: 900px)  {
    .timeline-months  {
        gap: 20px;
    }
    .news-list-section  {
        padding: 40px 30px;
    }
}
@media (max-width: 600px)  {
    .news-list-section  {
        padding: 30px 20px;
    }
    .news-item  {
        padding: 20px;
    }
    .news-item-title  {
        font-size: 20px;
    }
}
.work-list  {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}
.mission-vision-section .work-list  {
    max-width: 600px;
    margin: 20px auto 0;
}
.progress-section  {
    background: #4a79ba;
    padding: 64px 24px 66px;
    text-align: center;
    color: #ffffff;
}
.progress-main-title  {
    margin: 0;
    font-size: 41px;
    line-height: 1.1;
    color: #ffffff;
}
.progress-section .progress-description  {
    max-width: 470px;
    margin: 14px auto 26px;
    font-size: 17px;
    line-height: 1.35;
    color: rgba(255,255,255,0.92);
}
.progress-track  {
    max-width: 1100px;
    margin: 0 auto 34px;
    padding: 0 10px 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    align-items: start;
}
.progress-track::after  {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 104px;
    height: 2px;
    background: rgba(255,255,255,0.6);
}
.progress-point  {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 120px;
    padding-top: 34px;
}
.progress-point.first  {
    align-items: center;
    padding-left: 0;
}
.progress-year  {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255,255,255,0.58);
    margin-bottom: 2px;
    text-align: center;
    width: 100%;
}
.progress-label  {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.08;
    color: rgba(255,255,255,0.58);
}
.progress-point.active .progress-label  {
    color: #ffffff;
    font-weight: 700;
}
.progress-dot  {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d94989;
    position: absolute;
    top: 104px;
    transform: translateY(-50%);
}
.progress-point.active .progress-dot  {
    width: 24px;
    height: 24px;
    background: #d94989;
    border: 6px solid #ffffff;
}
.see-progress-btn  {
    display: inline-block;
    background: #ffffff;
    color: #2e4fd1;
    padding: 12px 30px;
    border-radius: 999px;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}
.see-progress-btn:hover  {
    background: #f7f9ff;
}
@media (max-width: 900px)  {
    .progress-main-title  {
        font-size: 34px;
    }
    .progress-section .progress-description  {
        font-size: 15px;
        max-width: 430px;
    }
    .progress-label  {
        font-size: 34px;
    }
    .progress-year  {
        font-size: 28px;
    }
    .progress-point  {
        min-height: 104px;
        padding-top: 28px;
    }
    .progress-point.first  {
        padding-left: 0;
    }
    .progress-track::after  {
        top: 88px;
    }
    .progress-dot  {
        top: 88px;
    }
    .progress-point.active .progress-dot  {
        width: 20px;
        height: 20px;
        border-width: 5px;
    }
    .see-progress-btn  {
        font-size: 18px;
        padding: 11px 24px;
    }
}
.resources-section  {
    display: grid;
    grid-template-columns: 420px 56px;
    gap: 24px;
    align-items: start;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 64px 24px 82px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
.resources-left  {
    max-width: 420px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
.resources-title  {
    margin: 0 0 14px;
    font-size: 56px;
    line-height: 1.08;
    color: #3f5f88;
    text-decoration: none;
}
.resources-description  {
    margin: 0 0 50px;
    max-width: 400px;
    font-size: 17px;
    line-height: 1.28;
    color: #6f89ad;
    text-shadow: 0 1px 0 rgba(224, 232, 242, 0.95);
}
.resources-links  {
    display: flex;
    flex-direction: column;
    gap: 42px;
    margin: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
.resource-link  {
    width: fit-content;
    color: #4d7fc2;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
}
.resources-right  {
    display: flex;
    flex-direction: column;
    gap: 74px;
    margin-top: 156px;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    justify-self: start;
    align-self: start;
}
.resource-icon  {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #4675b8;
    color: #4675b8;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 1;
}
.resource-icon::before  {
    content: "\2192";
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}
.resource-icon:hover  {
    background: transparent;
    opacity: 0.85;
}
@media (max-width: 900px)  {
    .resources-section  {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
        padding: 54px 24px 58px;
        margin: 0;
    }
    .resources-title  {
        font-size: 40px;
    }
    .resources-description  {
        font-size: 15px;
        margin-bottom: 34px;
    }
    .resource-link  {
        font-size: 16px;
    }
    .resources-right  {
        flex-direction: row;
        gap: 16px;
        margin-top: 0;
    }
    .resource-icon  {
        width: 38px;
        height: 38px;
        border-width: 2px;
    }
    .resource-icon::before  {
        font-size: 20px;
    }
}
:root  {
    --site-max-width: 1150px;
}
.nav-container,.section,.footer-container,.footer-bottom,.about-overview,.mission-vision-section,.approach-section,.progress-track,.progress-inner,.resources-section,.content-section, .progress-check-main,.upgrades-section,.news-list-section,.news-categories-section,.submit-grievance-section,.related-news-section  {
    max-width: var(--site-max-width) !important;
}
.resources-section  {
    width: 100% !important;
}
.home-hero-card  {
    max-width: 1150px;
    margin: 20px auto 28px;
    border-radius: 22px;
    overflow: hidden;
    min-height: 560px;
    background: url('thefutureflows.png') center/cover no-repeat;
    box-shadow: 0 8px 20px rgba(8, 20, 42, 0.18);
    position: relative;
}
.home-hero-overlay  {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 30px 40px;
}
.home-hero-title  {
    font-size: 76px;
    line-height: 1.05;
    font-weight: 700;
    margin: 0 0 18px;
    max-width: 900px;
}
.home-hero-subtitle  {
    margin: 0 0 28px;
    max-width: 760px;
    font-size: 38px;
    line-height: 1.22;
    color: rgba(255,255,255,0.9);
}
.home-news-btn  {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 210px;
    gap: 10px;
    padding: 6px 10px 6px 22px;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.7);
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(1px);
}
.home-news-btn-arrow  {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3f75ba;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
}
.home-hero-dots  {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    display: inline-flex;
    gap: 10px;
}
.home-hero-dots .dot  {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
}
.home-hero-dots .dot.active  {
    width: 58px;
    border-radius: 999px;
    background: rgba(255,255,255,0.58);
}
.home-intro-split  {
    max-width: 1150px;
    margin: 0 auto 48px;
    padding: 32px 16px 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.home-intro-left h2  {
    margin: 0 0 18px;
    font-size: 64px;
    line-height: 1.04;
    font-weight: 700;
    color: #445265;
    max-width: 470px;
}
.home-intro-left h2 span  {
    color: #3f75ba;
}
.home-intro-btn  {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 162px;
    height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    background: #3f75ba;
    color: #ffffff;
    text-decoration: none;
    font-size: 27px;
    font-weight: 600;
}
.home-intro-right p  {
    margin: 20px 0 0;
    max-width: 610px;
    color: #445265;
    font-size: 35px;
    line-height: 1.24;
}
.home-feature-cards  {
    max-width: 1150px;
    margin: 40px auto 64px;
}
.home-feature-grid  {
    display: grid;
    grid-template-columns: 1.55fr 0.9fr 0.9fr;
    gap: 22px;
}
.home-feature-card  {
    min-height: 300px;
    border-radius: 20px;
    padding: 26px 22px 24px 22px;
    display: flex;
    flex-direction: column;
}
.home-feature-card h3  {
    margin: 0;
    font-size: 41px;
    line-height: 1.15;
    font-weight: 400 !important;
}
.home-feature-card p  {
    margin: auto 0 0;
    max-width: 95%;
    font-size: 17px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
}
.home-feature-card.card-water  {
    background: #e4e9ec;
    color: #445265;
}
.home-feature-card.card-impact  {
    background: #a9a9ab;
    color: #ffffff;
}
.home-feature-card.card-standards  {
    background: #3f75ba;
    color: #ffffff;
}
.home-cta-banner  {
    max-width: 1150px;
    margin: 22px auto 0;
    border-radius: 0;
    min-height: 398px;
    background: linear-gradient(0deg, rgba(26, 35, 52, 0.35), rgba(26, 35, 52, 0.35)), radial-gradient(circle at 20% 30%, rgba(255,255,255,0.24), rgba(255,255,255,0) 45%), url('afutureshapedbyaction.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-cta-inner  {
    text-align: center;
    padding: 24px;
    color: #ffffff;
}
.home-cta-title  {
    margin: 0 0 12px;
    font-size: 64px !important;
    line-height: 1.08;
    font-weight: 700;
    color: #ffffff;
}
.home-cta-text  {
    margin: 0 0 28px;
    font-size: 24px !important;
    color: rgba(255,255,255,0.92);
    line-height: 1.3;
}
.home-cta-btn  {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 52px;
    border-radius: 999px;
    background: #eef2f4;
    color: #3f75ba;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}
.home-news-section  {
    max-width: 1150px;
    margin: 0 auto;
    padding: 52px 18px 64px;
    background: transparent;
}
.home-news-head  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.home-news-title  {
    margin: 0;
    font-size: 56px;
    line-height: 1.08;
    color: #445265;
    font-weight: 700;
}
.home-all-news-btn  {
    width: 181px;
    height: 46px;
    border-radius: 999px;
    background: #3f75ba;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}
.home-news-grid  {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.home-news-item  {
    min-width: 0;
}
.home-news-image  {
    position: relative;
    border: 0;
    border-radius: 20px;
    height: 402px;
    overflow: hidden;
    margin-bottom: 12px;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: none;
}
.home-news-image.image-1  {
    background-image: url('wastewater-clean.png');
}
.home-news-image.image-2  {
    background-image: url('management-clean.png');
}
.home-news-image.image-3  {
    background-image: url('sewerage-clean.png');
}
.home-news-arrow  {
    position: absolute;
    right: 16px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f3f4f5;
    color: #3f75ba;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}
.home-news-dot  {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e63733;
}
.home-news-item-title  {
    margin: 0 0 8px;
    color: #445265;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}
.home-news-item-text  {
    margin: 0;
    color: #6f7781;
    font-size: 15px !important;
    line-height: 1.35 !important;
}
.home-why-band  {
    max-width: 1150px;
    margin: 24px auto 0;
    padding: 76px 64px 72px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #e7e7e9;
    border-bottom: 0;
}
.home-why-top  {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 90px;
    align-items: center;
}
.home-why-left p  {
    margin: 0;
    max-width: 610px;
    color: #3f4c67;
    font-size: 24px !important;
    line-height: 1.28 !important;
    text-decoration: none;
    font-weight: 400 !important;
}
.home-why-right h2  {
    margin: 0;
    color: #445265;
    font-size: 64px !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    text-align: left;
    max-width: 320px;
    margin-left: 0;
}
.home-kpi-band  {
    max-width: 1150px;
    margin: 0 auto 40px;
    background: transparent;
    padding: 64px 18px 48px;
    position: relative;
}
.home-kpi-band--inside  {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 48px 8px;
    background: transparent;
    border-radius: 18px;
}
.home-kpi-grid  {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 0;
    align-items: stretch;
}
.home-kpi-item  {
    padding: 12px 28px;
    text-align: center;
    border-right: 1px solid rgba(63, 117, 186, 0.55);
    border-radius: 0;
    min-height: 120px;
    display: grid;
    grid-template-rows: 2.2em 3.2em;
    align-items: start;
    justify-items: center;
    row-gap: 18px;
}
.home-kpi-item:last-child  {
    border-right: 0;
}
.home-kpi-item h3  {
    margin: 0;
    color: #3f75ba;
    font-size: 30px !important;
    line-height: 1.1;
    font-weight: 700;
    height: 2.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-kpi-item p  {
    margin: 0 auto;
    max-width: 200px;
    color: #445265;
    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
    height: 3.2em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}
.home-kpi-arrow  {
    display: none;
}
.home-works-section  {
    max-width: 1150px;
    margin: 24px auto 64px;
    padding: 64px 34px 68px;
    background: transparent;
}
.home-works-title  {
    margin: 0 0 36px;
    color: #445265;
    font-size: 50px;
    line-height: 1.08;
    font-weight: 700;
}
.home-works-list  {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 670px;
}
.home-works-item  {
    padding: 6px 0 6px 28px;
    border-left: 3px solid transparent;
    transition: border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.home-works-item h3  {
    margin: 0 0 8px;
    font-size: 42px;
    line-height: 1.16;
    font-weight: 500 !important;
    color: #8f95ad;
}
.home-works-item p  {
    margin: 0;
    max-width: 520px;
    font-size: 14px !important;
    line-height: 1.3 !important;
    color: #9097ab;
    font-weight: 400 !important;
}
.home-works-item.active  {
    border-left-color: #3f75ba;
}
.home-works-item.active h3  {
    color: #3f75ba;
}
.home-works-item.active p  {
    color: #5f6680;
}
@media (max-width: 900px)  {
    .home-hero-card, .home-hero-overlay  {
        min-height: 420px;
    }
    .home-hero-title  {
        font-size: 48px;
    }
    .home-hero-subtitle  {
        font-size: 20px;
    }
    .home-news-btn  {
        min-width: 220px;
        font-size: 22px;
    }
    .home-news-btn-arrow  {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }
    .home-intro-split  {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .home-intro-left h2  {
        font-size: 42px;
    }
    .home-intro-right p  {
        font-size: 20px;
        margin-top: 0;
    }
    .home-feature-grid  {
        grid-template-columns: 1fr;
    }
    .home-feature-card  {
        min-height: 210px;
    }
    .home-feature-card h3  {
        font-size: 30px;
    }
    .home-feature-card p  {
        font-size: 16px !important;
    }
    .home-cta-banner  {
        min-height: 300px;
    }
    .home-cta-title  {
        font-size: 42px !important;
    }
    .home-cta-text  {
        font-size: 18px !important;
    }
    .home-news-head  {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .home-news-title  {
        font-size: 42px;
    }
    .home-news-grid  {
        grid-template-columns: 1fr;
    }
    .home-news-image  {
        height: 280px;
    }
    .home-news-item-title  {
        font-size: 28px;
    }
    .home-why-band  {
        padding: 34px 24px 30px;
        border-bottom-width: 10px;
    }
    .home-why-top  {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .home-kpi-band--inside  {
        padding: 28px 18px;
    }
    .home-why-right h2  {
        text-align: left;
        font-size: 44px !important;
    }
    .home-kpi-grid  {
        grid-template-columns: 1fr 1fr;
        gap: 18px 0;
    }
    .home-kpi-item  {
        border-right: 0;
        border-bottom: 1px solid rgba(71, 94, 125, 0.5);
    }
    .home-kpi-item:nth-child(3), .home-kpi-item:nth-child(4)  {
        border-bottom: 0;
    }
    .home-kpi-item h3  {
        font-size: 32px !important;
    }
    .home-works-section  {
        padding: 34px 24px 36px;
    }
    .home-works-title  {
        font-size: 40px;
    }
    .home-works-item h3  {
        font-size: 30px;
    }
}
body.page-progress .progress-check-main  {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 64px 24px 36px !important;
    text-align: center !important;
}
body.page-progress .progress-check-title  {
    margin: 0 0 10px !important;
    font-size: 50px !important;
    line-height: 1.12 !important;
    color: #3f75ba !important;
}
body.page-progress .progress-check-subtitle  {
    max-width: 740px !important;
    margin: 0 auto 30px !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
    color: #b2c9e3 !important;
}
body.page-progress .municipality-selector  {
    max-width: 1050px !important;
    margin: 0 auto 42px !important;
    gap: 12px !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
body.page-progress .municipality-button  {
    height: 42px !important;
    border-radius: 999px !important;
    border: 1.5px solid #c7d9ee !important;
    background: transparent !important;
    color: #c7d9ee !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}
body.page-progress .municipality-button.active  {
    border-color: #3f75ba !important;
    color: #3f75ba !important;
}
body.page-progress .progress-summary  {
    margin: 0 auto 56px !important;
}
body.page-progress .progress-summary p  {
    margin: 0 !important;
    font-size: 30px !important;
    line-height: 1.35 !important;
    color: #3f75ba !important;
}
body.page-progress .progress-summary p strong  {
    color: #39a94a !important;
    font-weight: 700 !important;
}
body.page-progress .progress-timeline-v2  {
    max-width: 1120px !important;
    margin: 0 auto !important;
    position: relative !important;
}
body.page-progress .timeline-labels  {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    margin-bottom: 20px !important;
}
body.page-progress .timeline-col  {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
}
body.page-progress .timeline-col.first  {
    align-items: flex-start !important;
    padding-left: 36px !important;
}
body.page-progress .timeline-year  {
    font-size: 42px !important;
    line-height: 1 !important;
    color: #b6cbe4 !important;
    font-weight: 700 !important;
}
body.page-progress .timeline-month  {
    font-size: 50px !important;
    line-height: 1.1 !important;
    color: #b6cbe4 !important;
    font-weight: 700 !important;
}
body.page-progress .timeline-col.active .timeline-month  {
    color: #3f75ba !important;
}
body.page-progress .timeline-pin  {
    display: none !important;
}
body.page-progress .timeline-track  {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    position: relative !important;
    padding-top: 10px !important;
    align-items: center !important;
}
body.page-progress .timeline-track::before  {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 15px !important;
    height: 2px !important;
    background: #abc4df !important;
}
body.page-progress .timeline-dot  {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    background: #b6cbe4 !important;
    margin: 0 auto !important;
    z-index: 1 !important;
}
body.page-progress .timeline-dot.active  {
    width: 20px !important;
    height: 20px !important;
    background: #3f75ba !important;
    border: 5px solid #d8e2ef !important;
}
body.page-progress .timeline-note  {
    margin-top: 30px !important;
    max-width: 470px !important;
    margin-left: calc(25% - 176px) !important;
    margin-right: 0 !important;
    text-align: center !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    color: #97afd0 !important;
}
@media (max-width: 900px)  {
    body.page-progress .progress-check-main  {
        padding: 44px 18px 28px !important;
    }
    body.page-progress .progress-check-title  {
        font-size: 38px !important;
    }
    body.page-progress .progress-check-subtitle  {
        font-size: 15px !important;
    }
    body.page-progress .municipality-selector  {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    body.page-progress .progress-summary p  {
        font-size: 23px !important;
    }
    body.page-progress .timeline-year  {
        font-size: 28px !important;
    }
    body.page-progress .timeline-month  {
        font-size: 34px !important;
    }
    body.page-progress .timeline-note  {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* === Footer Redesign === */
.footer  {
    background: #3f75ba;
    color: #ffffff;
    padding: 48px 24px;
}

.footer-inner  {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    align-items: center;
    gap: 32px;
}

.footer-brand  {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo  {
    height: 40px;
    max-width: 160px;
    width: 100%;
    object-fit: contain;
    display: block;
}

.footer-copy  {
    color: rgba(255,255,255,0.9);
}

.footer-links  {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-nav,
.footer-legal  {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
}

.footer-links a  {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.footer-links a:hover  {
    color: #ffffff;
}

.footer-social  {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.footer-social-icon  {
    width: 28px;
    height: 28px;
    display: block;
}

@media (max-width: 900px)  {
    .footer-inner  {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand  {
        align-items: center;
    }
    .footer-social  {
        justify-content: center;
    }
}

/* === Global Typography Scale (Unified) === */
:root  {
    --fs-h1: 42px;
    --fs-h2: 33px;
    --fs-h3: 21px;
    --fs-h4: 15px;
    --fs-body: 12px;
    --fs-small: 11px;
    --lh-tight: 1.1;
    --lh-body: 1.5;
}

@media (max-width: 900px)  {
    :root  {
        --fs-h1: 38px;
        --fs-h2: 30px;
        --fs-h3: 20px;
        --fs-h4: 15px;
        --fs-body: 14px;
        --fs-small: 12px;
    }
}

@media (max-width: 600px)  {
    :root  {
        --fs-h1: 34px;
        --fs-h2: 28px;
        --fs-h3: 19px;
        --fs-h4: 15px;
        --fs-body: 14px;
        --fs-small: 12px;
    }
}

h1  {
    font-size: var(--fs-h1) !important;
    line-height: var(--lh-tight) !important;
}

h2  {
    font-size: var(--fs-h2) !important;
    line-height: var(--lh-tight) !important;
}

h3  {
    font-size: var(--fs-h3) !important;
    line-height: 1.2 !important;
}

h4  {
    font-size: var(--fs-h4) !important;
    line-height: 1.25 !important;
}

p  {
    font-size: var(--fs-body) !important;
    line-height: var(--lh-body) !important;
}

.section-title,
.split-title,
.resources-title,
.progress-main-title,
.next-chapter-title,
.home-hero-title,
.home-news-title,
.home-works-title,
.news-hero-title,
.resources-page-title,
.grievance-page-title,
.progress-check-title  {
    font-size: var(--fs-h2) !important;
    line-height: var(--lh-tight) !important;
}

.section-subtitle,
.hero-text,
.home-hero-subtitle,
.home-news-item-text,
.news-item-description,
.progress-description,
.resources-description,
.grievance-page-subtitle,
.resource-card-content p,
.news-page-status  {
    font-size: var(--fs-body) !important;
    line-height: var(--lh-body) !important;
}

.news-date,
.resource-card-date,
.footer-bottom p  {
    font-size: var(--fs-small) !important;
    line-height: 1.35 !important;
}
body.page-grievance .grievance-page-main  {
    max-width: 760px !important;
    margin: 46px auto 0 !important;
    padding: 0 16px !important;
    text-align: center !important;
}
body.page-grievance .grievance-page-title  {
    margin: 0 0 8px !important;
    color: #3f75ba !important;
    font-size: 52px !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
}
body.page-grievance .grievance-page-subtitle  {
    max-width: 610px !important;
    margin: 0 auto 22px !important;
    color: #9eb6d6 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
}
body.page-grievance .grievance-page-form  {
    margin: 0 auto !important;
}
body.page-grievance .grievance-page-grid  {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
}
body.page-grievance .grievance-page-form input[type="text"],body.page-grievance .grievance-page-form input[type="email"],body.page-grievance .grievance-page-form input[type="tel"],body.page-grievance .grievance-page-form textarea  {
    width: 100% !important;
    height: 34px !important;
    border: 1.5px solid #d2ddee !important;
    border-radius: 999px !important;
    padding: 0 14px !important;
    background: transparent !important;
    color: #7c8aa0 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
}
body.page-grievance .grievance-page-form textarea  {
    height: 68px !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    line-height: 1.3 !important;
    resize: none !important;
    margin-bottom: 12px !important;
}
body.page-grievance .grievance-page-form input::placeholder,body.page-grievance .grievance-page-form textarea::placeholder  {
    color: #c0cade !important;
    opacity: 1 !important;
}
body.page-grievance .grievance-page-form input:focus,body.page-grievance .grievance-page-form textarea:focus  {
    outline: none !important;
    border-color: #8fb2dd !important;
}
body.page-grievance #grievanceUpload  {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}
body.page-grievance .grievance-upload-row  {
    display: flex !important;
    justify-content: flex-end !important;
    margin: 2px 0 18px !important;
}
body.page-grievance .grievance-upload-btn  {
    min-width: 190px !important;
    height: 34px !important;
    border-radius: 999px !important;
    border: 1.5px solid #3f75ba !important;
    color: #3f75ba !important;
    background: transparent !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}
body.page-grievance .submit-grievance-btn  {
    width: 190px !important;
    height: 38px !important;
    margin: 0 auto !important;
    border-radius: 999px !important;
    border: 0 !important;
    background: #3f75ba !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    cursor: pointer !important;
}
body.page-grievance .submit-grievance-btn:hover  {
    background: #2f66ab !important;
    transform: none !important;
}
body.page-grievance .grievance-process  {
    max-width: 760px !important;
    margin: 120px auto 100px !important;
    padding: 0 16px !important;
    text-align: center !important;
}
body.page-grievance .grievance-process h2  {
    margin: 0 0 18px !important;
    color: #6f96cb !important;
    font-size: 42px !important;
    line-height: 1.1 !important;
    font-weight: 500 !important;
}
body.page-grievance .grievance-process p  {
    margin: 0 !important;
    color: #9ba3ae !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
}
@media (max-width: 900px)  {
    body.page-grievance .grievance-page-main  {
        margin-top: 32px !important;
    }
    body.page-grievance .grievance-page-title  {
        font-size: 38px !important;
    }
    body.page-grievance .grievance-page-grid  {
        grid-template-columns: 1fr !important;
    }
    body.page-grievance .grievance-upload-row  {
        justify-content: center !important;
    }
    body.page-grievance .grievance-process  {
        margin-top: 72px !important;
    }
    body.page-grievance .grievance-process h2  {
        font-size: 30px !important;
    }
}
body.page-news .news-feed-shell  {
    max-width: 980px !important;
    margin: 24px auto 40px !important;
    padding: 0 20px !important;
}
body.page-news .news-feed-shell .news-hero-title  {
    margin: 0 0 16px !important;
    color: #2f63ad !important;
    font-size: 44px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    text-align: left !important;
}
body.page-news .news-feed-list  {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}
body.page-news .news-feed-list .news-item  {
    display: grid !important;
    grid-template-columns: 320px 1fr !important;
    gap: 18px !important;
    border-bottom: 1px solid #d4d8de !important;
    padding: 14px 0 20px !important;
    margin: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    position: static !important;
}
body.page-news .news-feed-list .news-item::before  {
    content: none !important;
}
body.page-news .news-feed-thumb  {
    width: 100% !important;
    height: 180px !important;
    border-radius: 8px !important;
    background-size: cover !important;
    background-position: center !important;
}
body.page-news .news-thumb-1  {
    background: linear-gradient(25deg, rgba(43, 84, 35, 0.28), rgba(145, 186, 94, 0.15)), linear-gradient(130deg, #477136 0%, #8ca34f 48%, #a7b177 100%) !important;
}
body.page-news .news-thumb-2  {
    background: linear-gradient(20deg, rgba(40, 52, 79, 0.24), rgba(120, 137, 159, 0.2)), linear-gradient(140deg, #4d5a6f 0%, #7989a3 58%, #c7d0dc 100%) !important;
}
body.page-news .news-thumb-3  {
    background: repeating-linear-gradient(90deg, #777 0 10px, #a0a0a0 10px 18px), linear-gradient(120deg, #4e5860 0%, #8c9197 100%) !important;
}
body.page-news .news-thumb-4  {
    background: radial-gradient(circle at 40% 55%, rgba(255,255,255,0.28), rgba(255,255,255,0) 40%), linear-gradient(130deg, #193f51 0%, #2c6e83 48%, #1f2f3f 100%) !important;
}
body.page-news .news-thumb-5  {
    background: linear-gradient(50deg, rgba(195, 136, 71, 0.4), rgba(74, 112, 130, 0.2)), linear-gradient(120deg, #8d5c2a 0%, #9f8755 55%, #567381 100%) !important;
}
body.page-news .news-thumb-6  {
    background: radial-gradient(circle at 30% 30%, rgba(72, 114, 151, 0.24), rgba(72, 114, 151, 0)), linear-gradient(135deg, #5c7a9f 0%, #96aeca 50%, #d4e0ea 100%) !important;
}
body.page-news .news-feed-content  {
    min-width: 0 !important;
}
body.page-news .news-feed-list .news-date  {
    margin: 0 0 6px !important;
    color: #b2b7be !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}
body.page-news .news-feed-list .news-item-title  {
    margin: 0 0 8px !important;
    color: #2f63ad !important;
    font-size: 30px !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
}
body.page-news .news-feed-list .news-item-description  {
    margin: 0 0 12px !important;
    color: #bdc3cb !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
}
body.page-news .news-feed-list .news-more-link  {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    height: 28px !important;
    padding: 0 12px !important;
    border: 1px solid #8f99a8 !important;
    border-radius: 999px !important;
    color: #4d586d !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    line-height: 1 !important;
    background: #ffffff !important;
}
body.page-news .news-feed-list .news-more-icon  {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    background: #2f63ad !important;
    color: #ffffff !important;
    font-size: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}
body.page-news .news-pagination  {
    display: none !important;
}
body.page-news .news-pagination-shell  {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 28px 0 6px !important;
}
body.page-news .news-nav-label  {
    color: #b7bcc4 !important;
    font-size: 10px !important;
    line-height: 1 !important;
    min-width: 44px !important;
    text-transform: lowercase !important;
}
body.page-news .news-nav-arrow  {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    border: 1px solid #d3d8df !important;
    background: #f2f4f6 !important;
    color: #a6adb8 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    padding: 0 !important;
}
body.page-news .news-page-numbers  {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}
body.page-news .news-page-dot  {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    border: 1px solid #bcc3ce !important;
    background: transparent !important;
    color: #9ea5b0 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    padding: 0 !important;
}
body.page-news .news-page-dot.active  {
    background: #2f63ad !important;
    border-color: #2f63ad !important;
    color: #ffffff !important;
}
body.page-news .news-page-status  {
    margin: 8px 0 0 !important;
    min-height: 18px !important;
    text-align: center !important;
    color: #9ea5b0 !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
}
body.page-news .dashboard-section  {
    display: none !important;
}
@media (max-width: 900px)  {
    body.page-news .news-feed-shell  {
        max-width: 100% !important;
        padding: 0 12px !important;
    }
    body.page-news .news-feed-list .news-item  {
        grid-template-columns: 1fr !important;
    }
    body.page-news .news-feed-thumb  {
        height: 190px !important;
    }
    body.page-news .news-feed-shell .news-hero-title  {
        font-size: 34px !important;
    }
    body.page-news .news-feed-list .news-item-title  {
        font-size: 24px !important;
    }
    body.page-news .news-pagination-shell  {
        flex-wrap: wrap !important;
    }
}
body.page-about .resources-section  {
    display: grid !important;
    grid-template-columns: max-content 44px !important;
    column-gap: 16px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 1150px !important;
    margin: 0 auto !important;
    padding: 64px 24px 82px !important;
}
body.page-about .resources-left  {
    max-width: none !important;
}
body.page-about .resources-title  {
    white-space: nowrap !important;
    margin: 0 0 14px !important;
}
body.page-about .resources-description  {
    white-space: nowrap !important;
    margin: 0 0 42px !important;
    max-width: none !important;
}
body.page-about .resources-links  {
    gap: 46px !important;
}
body.page-about .resources-right  {
    justify-self: start !important;
    align-self: start !important;
    margin-top: 142px !important;
    gap: 54px !important;
    padding-top: 2px !important;
}
@media (max-width: 900px)  {
    body.page-about .resources-section  {
        grid-template-columns: 1fr !important;
    }
    body.page-about .resources-title, body.page-about .resources-description  {
        white-space: normal !important;
    }
    body.page-about .resources-right  {
        margin-top: 0 !important;
        flex-direction: row !important;
        gap: 16px !important;
    }
}
body.page-resources .resources-page-main  {
    max-width: 1150px;
    margin: 24px auto 54px;
    padding: 0 20px;
}
body.page-resources .resources-page-head  {
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}
body.page-resources .resources-page-title  {
    margin: 0;
    color: #2f63ad;
    font-size: clamp(34px, 5.2vw, 62px);
    line-height: 1.08;
    font-weight: 700;
}
body.page-resources .resources-year-filter  {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    min-width: 170px;
}
body.page-resources .resources-year-filter label  {
    color: #667791;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
body.page-resources .resources-year-filter select  {
    width: 170px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #bccbe1;
    background: #ffffff;
    color: #445265;
    font-size: 14px;
    font-weight: 600;
    padding: 0 12px;
    outline: none;
    cursor: pointer;
}
body.page-resources .resources-cards  {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
body.page-resources .resource-card  {
    display: flex;
    flex-direction: column;
    background: #eef2f7;
    border-radius: 14px;
    overflow: hidden;
    min-height: 360px;
}
body.page-resources .resource-card-content  {
    padding: 16px 16px 16px;
}
body.page-resources .resource-card-content h3  {
    margin: 0 0 6px;
    color: #202d42;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}
body.page-resources .resource-card-date  {
    margin: 0 0 10px;
    color: #8f9bb1;
    font-size: 13px;
    font-weight: 600;
}
body.page-resources .resource-card-content p  {
    margin: 0;
    color: #5c6780;
    font-size: 13px !important;
    line-height: 1.38 !important;
}
body.page-resources .resource-download-btn  {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    height: 34px;
    border-radius: 999px;
    background: #3f75ba;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}
body.page-resources .resource-card-visual  {
    width: 100%;
    min-height: 172px;
}
body.page-resources .resource-card-visual.visual-1  {
    background: radial-gradient(circle at 25% 30%, rgba(255,255,255,0.3), rgba(255,255,255,0) 38%), linear-gradient(130deg, #2e3d6f 0%, #5a67a2 52%, #a19487 100%);
}
body.page-resources .resource-card-visual.visual-2  {
    background: radial-gradient(circle at 70% 18%, rgba(255,255,255,0.25), rgba(255,255,255,0) 35%), linear-gradient(125deg, #375f4a 0%, #5f8f6b 46%, #9ec06e 100%);
}
body.page-resources .resource-card-visual.visual-3  {
    background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0)), linear-gradient(130deg, #4f6783 0%, #8ca4c6 56%, #d0d9e7 100%);
}
body.page-resources .resource-card-visual.visual-4  {
    background: radial-gradient(circle at 18% 75%, rgba(255,255,255,0.25), rgba(255,255,255,0) 40%), linear-gradient(130deg, #456283 0%, #728eb4 55%, #c2d2e7 100%);
}
body.page-resources .resource-card-visual.visual-5  {
    background: radial-gradient(circle at 20% 18%, rgba(255,255,255,0.26), rgba(255,255,255,0) 34%), linear-gradient(130deg, #6b5f3e 0%, #9b8c5b 45%, #c6bd93 100%);
}
body.page-resources .resource-card-visual.visual-6  {
    background: radial-gradient(circle at 78% 24%, rgba(255,255,255,0.26), rgba(255,255,255,0) 35%), linear-gradient(130deg, #2f597a 0%, #4f7ca4 50%, #97bbd7 100%);
}
body.page-resources .resources-empty  {
    margin: 18px 0 0;
    color: #7f8da4;
    font-size: 14px;
}
@media (max-width: 900px)  {
    body.page-resources .resources-page-head  {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    body.page-resources .resources-year-filter  {
        align-items: flex-start;
    }
    body.page-resources .resources-cards  {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    body.page-resources .resource-card-content h3  {
        font-size: 20px;
    }
}
@media (max-width: 640px)  {
    body.page-resources .resources-cards  {
        grid-template-columns: 1fr;
    }
    body.page-resources .resource-card-visual  {
        min-height: 150px;
    }
}
*  {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}
h1, h2, h3, h4, h5, h6,.section-title,.split-title,.resources-title,.progress-main-title,.next-chapter-title,.home-intro-left h2,.home-hero-title  {
    font-weight: 700 !important;
}
.section-title,.split-title,.resources-title,.home-intro-left h2,.about-overview .section-title,.mission-left .section-title,.approach-left .section-title,.why-title .section-title,.news-title,.upgrades-title,.grievance-section-title,.related-news-title  {
    font-size: 64px !important;
    line-height: 1.05 !important;
}
p,.regular-text,.hero-text,.section-subtitle,.resources-description,.news-summary,.approach-content p,.upgrade-text,.grievance-text,.status-text,.home-intro-right p,.home-hero-subtitle  {
    font-size: 24px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
}
.home-intro-btn  {
    width: 233px !important;
    height: 65px !important;
    min-width: 233px !important;
    padding: 0 !important;
    font-weight: 600 !important;
}
.progress-check-main  {
    max-width: 1150px !important;
    margin: 0 auto;
    padding: 70px 24px 50px;
    text-align: center;
    background: transparent !important;
}
.progress-check-title  {
    margin: 0 0 14px;
    font-size: 54px;
    line-height: 1.08;
    color: #3f75ba;
    font-weight: 700;
}
.progress-check-subtitle  {
    margin: 0 auto 34px;
    max-width: 760px;
    font-size: 19px !important;
    line-height: 1.45 !important;
    color: #b3cee9;
    font-weight: 400 !important;
}
.municipality-selector  {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 980px;
    margin: 0 auto 48px;
}
.municipality-button  {
    height: 50px;
    border-radius: 999px;
    border: 1.5px solid #d2deec;
    background: transparent;
    color: #d2deec;
    font-size: 19px;
    font-weight: 400;
}
.municipality-button.active  {
    border-color: #3f75ba;
    color: #3f75ba;
    background: transparent;
}
.progress-summary  {
    margin: 0 auto 74px;
}
.progress-summary p  {
    margin: 0;
    font-size: 31px !important;
    line-height: 1.4 !important;
    color: #3f75ba;
    font-weight: 400 !important;
}
.progress-summary p strong  {
    color: #3caf4e;
    font-weight: 700;
}
.progress-timeline-v2  {
    max-width: 1100px;
    margin: 0 auto;
}
.timeline-labels  {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: end;
    margin-bottom: 18px;
}
.timeline-col  {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.timeline-col.first  {
    align-items: flex-start;
    padding-left: 34px;
}
.progress-check-main .timeline-year  {
    width: auto;
    font-size: 41px;
    line-height: 1;
    color: #b3cee9;
    font-weight: 700;
    text-align: left;
}
.progress-check-main .timeline-month  {
    font-size: 52px;
    line-height: 1.08;
    color: #b3cee9;
    font-weight: 600;
}
.timeline-col.active .timeline-month  {
    color: #3f75ba;
    font-weight: 700;
}
.timeline-pin  {
    position: absolute;
    top: 36px;
    left: 36%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f33b3b;
}
.timeline-track  {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    padding-top: 12px;
}
.timeline-track::before  {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    height: 2px;
    background: #b9cee4;
}
.timeline-dot  {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #b9cee4;
    margin: 0 auto;
    z-index: 1;
}
.timeline-dot.active  {
    width: 20px;
    height: 20px;
    background: #3f75ba;
    border: 4px solid #8fb0d6;
}
.timeline-note  {
    margin: 24px auto 0;
    max-width: 300px;
    font-size: 15px !important;
    line-height: 1.35 !important;
    color: #9fb7d8;
    font-weight: 400 !important;
}
@media (max-width: 900px)  {
    .progress-check-main  {
        padding: 44px 20px 34px;
    }
    .progress-check-title  {
        font-size: 40px;
    }
    .progress-check-subtitle  {
        font-size: 16px !important;
    }
    .municipality-selector  {
        grid-template-columns: 1fr 1fr;
    }
    .progress-summary p  {
        font-size: 24px !important;
    }
    .progress-check-main .timeline-year  {
        font-size: 28px;
    }
    .progress-check-main .timeline-month  {
        font-size: 34px;
    }
    .timeline-col.first  {
        padding-left: 8px;
    }
    .timeline-note  {
        font-size: 13px !important;
    }
}
.page-progress .progress-hero  {
    display: none;
}
.page-progress .progress-check-main  {
    max-width: 1150px !important;
    margin: 0 auto;
    padding: 74px 20px 30px;
    text-align: center;
    background: transparent !important;
}
.page-progress .progress-check-title  {
    margin: 0 0 14px;
    color: #3f75ba;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.06;
}
.page-progress .progress-check-subtitle  {
    margin: 0 auto 40px;
    max-width: 760px;
    color: #b7cdea;
    font-size: 24px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
}
.page-progress .municipality-selector  {
    max-width: 1080px;
    margin: 0 auto 56px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.page-progress .municipality-button  {
    height: 46px;
    border-radius: 999px;
    border: 1.5px solid #d2ddec;
    background: transparent;
    color: #cfd9e8;
    font-size: 20px;
    font-weight: 400;
}
.page-progress .municipality-button.active  {
    border-color: #3f75ba;
    color: #3f75ba;
}
.page-progress .progress-summary  {
    margin: 0 auto 62px;
}
.page-progress .progress-summary p  {
    margin: 0;
    color: #3f75ba;
    font-size: 34px !important;
    line-height: 1.34 !important;
}
.page-progress .progress-summary strong  {
    color: #3caf4e;
    font-weight: 700;
}
.page-progress .progress-timeline-v2  {
    max-width: 1100px;
    margin: 0 auto;
}
.page-progress .timeline-labels  {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 10px;
}
.page-progress .timeline-col  {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.page-progress .timeline-col.first  {
    align-items: flex-start;
    padding-left: 22px;
}
.page-progress .timeline-year  {
    width: auto;
    color: #b4cde6;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}
.page-progress .timeline-month  {
    color: #b4cde6;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.08;
}
.page-progress .timeline-col.active .timeline-month  {
    color: #3f75ba;
}
.page-progress .timeline-pin  {
    position: absolute;
    top: 36px;
    left: 34%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ea4040;
}
.page-progress .timeline-track  {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    padding-top: 12px;
}
.page-progress .timeline-track::before  {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 2px;
    background: #b7cde4;
}
.page-progress .timeline-dot  {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #b7cde4;
    margin: 0 auto;
    z-index: 1;
}
.page-progress .timeline-dot.active  {
    width: 16px;
    height: 16px;
    background: #3f75ba;
    border: 3px solid #95b3d6;
}
.page-progress .timeline-note  {
    margin: 18px auto 0;
    max-width: 260px;
    color: #9fb7d8;
    font-size: 11px !important;
    line-height: 1.3 !important;
}
body.page-progress .progress-check-main  {
    max-width: 1180px !important;
    padding: 64px 24px 36px !important;
}
body.page-progress .progress-check-title  {
    margin: 0 0 10px !important;
    font-size: 50px !important;
    line-height: 1.12 !important;
    color: #3f75ba !important;
}
body.page-progress .progress-check-subtitle  {
    max-width: 740px !important;
    margin: 0 auto 30px !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
    color: #b2c9e3 !important;
}
body.page-progress .municipality-selector  {
    max-width: 1050px !important;
    gap: 12px !important;
    margin: 0 auto 42px !important;
}
body.page-progress .municipality-button  {
    height: 42px !important;
    border: 1.5px solid #c7d9ee !important;
    color: #c7d9ee !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}
body.page-progress .municipality-button.active  {
    border-color: #3f75ba !important;
    color: #3f75ba !important;
}
body.page-progress .progress-summary  {
    margin: 0 auto 56px !important;
}
body.page-progress .progress-summary p  {
    font-size: 30px !important;
    line-height: 1.35 !important;
    color: #3f75ba !important;
}
body.page-progress .progress-summary p strong  {
    color: #39a94a !important;
}
body.page-progress .progress-timeline-v2  {
    max-width: 1120px !important;
    position: relative;
}
body.page-progress .timeline-marker-dot  {
    position: absolute;
    left: 33%;
    top: -14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e53a3a;
}
body.page-progress .timeline-labels  {
    margin-bottom: 14px !important;
}
body.page-progress .timeline-col.first  {
    padding-left: 34px !important;
}
body.page-progress .timeline-year  {
    font-size: 38px !important;
    color: #b7cdea !important;
}
body.page-progress .timeline-month  {
    font-size: 48px !important;
    color: #b7cdea !important;
}
body.page-progress .timeline-col.active .timeline-month  {
    color: #3f75ba !important;
}
body.page-progress .timeline-pin  {
    width: 7px !important;
    height: 7px !important;
    top: 42px !important;
    left: 36% !important;
}
body.page-progress .timeline-track  {
    padding-top: 8px !important;
}
body.page-progress .timeline-track::before  {
    top: 16px !important;
}
body.page-progress .timeline-dot  {
    width: 12px !important;
    height: 12px !important;
}
body.page-progress .timeline-dot.active  {
    width: 18px !important;
    height: 18px !important;
    border: 4px solid #8caed4 !important;
}
body.page-progress .timeline-note  {
    margin-top: 18px !important;
    max-width: 260px !important;
    margin-left: calc(25% - 96px) !important;
    margin-right: 0 !important;
    text-align: center !important;
    font-size: 11px !important;
    line-height: 1.28 !important;
    color: #9eb8d8 !important;
}
@media (max-width: 900px)  {
    body.page-progress .progress-check-main  {
        padding: 44px 18px 28px !important;
    }
    body.page-progress .progress-check-title  {
        font-size: 38px !important;
    }
    body.page-progress .progress-check-subtitle  {
        font-size: 15px !important;
    }
    body.page-progress .municipality-selector  {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    body.page-progress .progress-summary p  {
        font-size: 23px !important;
    }
    body.page-progress .timeline-year  {
        font-size: 28px !important;
    }
    body.page-progress .timeline-month  {
        font-size: 34px !important;
    }
    body.page-progress .timeline-note  {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    body.page-progress .timeline-marker-dot  {
        display: none;
    }
}
body.page-progress .progress-timeline-v2  {
    max-width: 1120px !important;
    margin: 0 auto !important;
}
body.page-progress .timeline-labels  {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: end !important;
    margin-bottom: 18px !important;
}
body.page-progress .timeline-col  {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
body.page-progress .timeline-col.first  {
    align-items: flex-start !important;
    padding-left: 66px !important;
}
body.page-progress .timeline-year  {
    font-size: 44px !important;
    line-height: 1 !important;
    color: #b4cbe5 !important;
    font-weight: 700 !important;
}
body.page-progress .timeline-month  {
    font-size: 50px !important;
    line-height: 1.08 !important;
    color: #b4cbe5 !important;
    font-weight: 700 !important;
}
body.page-progress .timeline-col.active .timeline-month  {
    color: #3f75ba !important;
}
body.page-progress .timeline-track  {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    position: relative !important;
    align-items: center !important;
    padding-top: 12px !important;
}
body.page-progress .timeline-track::before  {
    content: "" !important;
    position: absolute !important;
    top: 20px !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: #afc7e1 !important;
}
body.page-progress .timeline-dot  {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    background: #b4cbe5 !important;
    margin: 0 auto !important;
    z-index: 1 !important;
}
body.page-progress .timeline-dot.active  {
    width: 20px !important;
    height: 20px !important;
    background: #3f75ba !important;
    border: 5px solid #dce5ef !important;
}
body.page-progress .timeline-note  {
    margin-top: 28px !important;
    max-width: 320px !important;
    margin-left: calc(25% - 50px) !important;
    margin-right: 0 !important;
    text-align: center !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    color: #8ea8cb !important;
}
@media (max-width: 900px)  {
    body.page-progress .timeline-col.first  {
        padding-left: 8px !important;
    }
    body.page-progress .timeline-year  {
        font-size: 28px !important;
    }
    body.page-progress .timeline-month  {
        font-size: 34px !important;
    }
    body.page-progress .timeline-note  {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

body.page-grievance .grievance-page-form select{
    width:100%;
    border:1.5px solid #bfd0e8;
    border-radius:999px;
    padding:14px 16px;
    background:#f5f7fa;
    color:#8ea3c2;
    font-size:18px;
    outline:none;
}
body.page-grievance .grievance-page-form select:focus{border-color:#3F75BA;background:#fff;color:#445265}
.gr-alert{max-width:1180px;margin:0 auto 18px;padding:14px 18px;border-radius:18px;background:#eef4fb;color:#445265;border:1px solid #d8e2ef;font-weight:600}
.gr-alert.gr-success{background:#edf9f1;color:#157347;border-color:#b7e1c1}
.gr-alert.gr-error{background:#fff2f2;color:#b42318;border-color:#f3c1c1}
.grievance-tracker-section{padding:20px 20px 70px}
.grievance-tracker-box{max-width:1180px;margin:0 auto;background:#fff;border:1px solid #d8e2ef;border-radius:28px;padding:32px;box-shadow:0 10px 30px rgba(63,117,186,.06)}
.grievance-tracker-box h2{color:#3F75BA;font-size:36px;margin-bottom:6px;text-align:center}
.grievance-tracker-box p{color:#8ea3c2;text-align:center;margin-bottom:22px}
.tracker-row{display:flex;gap:14px;align-items:center}
.tracker-row input{flex:1;border:1.5px solid #bfd0e8;border-radius:999px;padding:16px 18px;font-size:18px;background:#f5f7fa}
#trackBtn{margin:0;min-width:220px}
.tracker-card{margin-top:22px;background:#f5f7fa;border:1px solid #d8e2ef;border-radius:24px;padding:22px}.tracker-card h3{color:#3F75BA;font-size:28px;margin-bottom:10px}.tracker-timeline{display:grid;gap:12px;margin-top:16px}.tracker-event{background:#fff;border:1px solid #d8e2ef;border-radius:18px;padding:16px}.tracker-event strong{display:block;color:#3F75BA}.tracker-event span{display:block;color:#8ea3c2;font-size:14px;margin:4px 0 10px}
@media (max-width: 768px){.tracker-row{flex-direction:column;align-items:stretch}#trackBtn{width:100%}.grievance-tracker-box{padding:22px}.grievance-tracker-box h2{font-size:28px}}
