html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

:root{
    --green:#0f5132;
    --green-light:#1b7a4a;
    --border:#e6efe9;
    --text:#1f2933;
    --muted:#6b7280;
    --bg:#f7faf8;
}

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body{
    font-family:Inter,system-ui;
    color:var(--text);
    background:white;
    line-height:1.6;
}

.container{
    max-width:1100px;
    margin:auto;
    padding:0 20px;
}

.section{
    padding:100px 0;
}

.section.alt{
    background:var(--bg);
}

.section-title{
    font-size:36px;
    font-weight:600;
    color:var(--green);
    margin-bottom:30px;
    text-align:center;
}

.section-text{
    max-width:760px;
    margin:auto;
    text-align:center;
    color:var(--muted);
    margin-bottom:50px;
}

/* HEADER */

.header{
    position:sticky;
    top:0;
    background:white;
    border-bottom:1px solid var(--border);
    z-index:1000;
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:70px;
}

.logo{
    text-align: center;
    font-weight:600;
    color:var(--green);
}

.nav{
    display:flex;
    gap:28px;
}

.nav a{
    text-decoration:none;
    color:var(--text);
    font-size:14px;
}

.nav a:hover{
    color:var(--green);
}

.lang-switch{
    display:flex;
    gap:10px;
}

.lang-switch button{
    border:1px solid var(--green);
    background:white;
    padding:6px 10px;
    cursor:pointer;
}

.burger{
    display:none;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
}

.burger span{
    width:22px;
    height:2px;
    background:var(--text);
}

@media(max-width:768px){

    .nav{
        position:absolute;
        top:70px;
        left:0;
        right:0;
        background:white;
        flex-direction:column;
        padding:20px;
        display:none;
        border-bottom:1px solid var(--border);
    }

    .nav.open{
        display:flex;
    }

    .burger{
        display:flex;
    }

}

/* HERO */

.hero{
    height:90vh;
    background-image:url('../images/bg.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:white;
}

.hero-overlay{
    background:rgba(0,0,0,0.45);
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
}

.hero h1{
    line-height: 0.9;
    font-weight: bold;
    font-size: 72px;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    max-width:520px;
}

/* CARDS */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:28px;
}

.card{
    border:1px solid var(--border);
    border-radius:12px;
    padding:30px;
    background:white;
}

.card h3{
    color:var(--green);
    margin-bottom:8px;
}

.card p{
    font-size:14px;
    color:var(--muted);
}

/* IMAGE */

.layout-image{
    border-radius:12px;
    overflow:hidden;
    border:1px solid var(--border);
}

.layout-image img{
    width:100%;
    display:block;
}

.layout-caption{
    text-align:center;
    font-size:13px;
    margin-top:15px;
    color:var(--muted);
}

/* BENEFITS */

.benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    max-width:800px;
    margin:auto;
}

.benefits h4{
    color:var(--green);
    margin-bottom:5px;
}

.benefits p{
    font-size:14px;
    color:var(--muted);
}

/* TIMELINE */

.timeline{
    max-width:700px;
    margin:auto;
    border-left:2px solid var(--green);
    padding-left:25px;
    display:flex;
    flex-direction:column;
    gap:30px;
}

.timeline div{
    position:relative;
}

.timeline div:before{
    content:'';
    width:12px;
    height:12px;
    background:var(--green);
    border-radius:50%;
    position:absolute;
    left:-32px;
    top:4px;
}

/* FORM */

.contact-form{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    padding:14px;
    border:1px solid var(--border);
    border-radius:10px;
}

.contact-form button{
    padding:14px;
    background:var(--green);
    color:white;
    border:none;
    border-radius:10px;
    cursor:pointer;
}

.contact-form button:hover{
    background:var(--green-light);
}

/* FOOTER */

footer{
    padding:60px 0;
    text-align:center;
    font-size:14px;
    color:var(--muted);
    border-top:1px solid var(--border);
}

/* TECHNICAL */

.tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:40px;
}

.tech-block{
    border:1px solid var(--border);
    border-radius:12px;
    padding:28px;
    background:white;
    transition:.3s;
}

.tech-block:hover{
    border-color:var(--green-light);
}

.tech-block h3{
    color:var(--green);
    margin-bottom:12px;
    font-size:18px;
}

.tech-block p{
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
}

.tech-list{
    padding-left:18px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.tech-list li{
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
    margin-top:40px;
}

/* BENEFIT */

.benefit-card{
    border:1px solid var(--border);
    border-radius:12px;
    padding:30px;
    background:white;
    transition:.3s;
}

.benefit-card:hover{
    border-color:var(--green-light);
}

.benefit-icon{
    font-size:26px;
    margin-bottom:12px;
}

.benefit-card h3{
    color:var(--green);
    margin-bottom:10px;
    font-size:18px;
}

.benefit-card p{
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
}

/* EFFICINECY */


.efficiency-wrapper{
    position:relative;
    max-width:800px;
    margin:50px auto 0;
    padding-left:30px;
}

.efficiency-line{
    position:absolute;
    left:8px;
    top:0;
    bottom:0;
    width:2px;
    background:var(--green);
    opacity:0.3;
}

.efficiency-list{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.eff-item{
    position:relative;
}

.eff-item::before{
    content:'';
    position:absolute;
    left:-30px;
    top:6px;
    width:10px;
    height:10px;
    background:var(--green);
    border-radius:50%;
}

.eff-item h3{
    color:var(--green);
    font-size:18px;
    margin-bottom:8px;
}

.eff-item p{
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
}

.social-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.social-content{
    max-width:520px;
}

.social-text{
    color:var(--muted);
    margin-bottom:25px;
    line-height:1.7;
}

.social-subtitle{
    color:var(--green);
    margin-bottom:15px;
    font-size:18px;
}

.social-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    padding-left:18px;
}

.social-list li{
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
}

/*.social-images{*/
/*    display:grid;*/
/*    grid-template-columns:1fr 1fr;*/
/*    gap:10px;*/
/*}*/

.social-images{
    display:flex;
    flex-direction: column;
}

.social-images img{
    width:100%;
    border-radius:12px;
    object-fit:cover;
}

.social-images img:last-child{
    margin-top: 10px;
}

.masterplan-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
    margin-top:40px;
}

.masterplan-image img{
    width:100%;
    border-radius:12px;
    border:1px solid var(--border);
}

.masterplan-content{
    max-width:520px;
}

.masterplan-text{
    color:var(--muted);
    margin-bottom:20px;
    line-height:1.7;
}

.masterplan-subtitle{
    color:var(--green);
    margin-bottom:12px;
    font-size:18px;
}

.masterplan-list{
    padding-left:18px;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.masterplan-list li{
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
}

.education-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin:40px 0;
}

.education-gallery img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid var(--border);
}

.education-info{
    text-align:center;
    margin-bottom:30px;
}

.education-stats{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-bottom:15px;
}

.education-stats strong{
    color:var(--green);
    font-size:16px;
}

.education-desc{
    color:var(--muted);
    font-size:14px;
    max-width:600px;
    margin:auto;
}

.education-goals{
    max-width:800px;
    margin:40px auto 0;
}

.education-goals h4{
    color:var(--green);
    margin-bottom:15px;
    text-align:center;
}

.education-goals ul{
    padding-left:18px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.education-goals li{
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
}

.medical-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:60px;
    align-items:start;
}

.medical-content{
    max-width:520px;
}

.medical-text{
    color:var(--muted);
    margin-bottom:25px;
    line-height:1.7;
}

.medical-subtitle{
    color:var(--green);
    margin-bottom:12px;
    font-size:18px;
}

.medical-list{
    padding-left:18px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.medical-list li{
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
}

.medical-images{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.medical-images img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid var(--border);
}

.economy-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:60px;
    align-items:start;
    margin-top:40px;
}

.economy-list{
    padding-left:18px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.economy-list li{
    color:var(--muted);
    font-size:15px;
    line-height:1.7;
}

/* RIGHT BLOCK */

.economy-finance{
    border:1px solid var(--border);
    border-radius:12px;
    padding:30px;
    background:white;
}

.economy-finance h3{
    color:var(--green);
    margin-bottom:10px;
    font-size:18px;
}

.economy-finance p{
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
}

.training-top{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:60px;
    align-items:start;
    margin-top:40px;
}

.training-text p{
    color:var(--muted);
    margin-bottom:15px;
    line-height:1.7;
}

/* BOX */

.training-box{
    border:1px solid var(--border);
    border-radius:12px;
    padding:25px;
    background:white;
}

.training-box h4{
    color:var(--green);
    margin-bottom:10px;
}

.training-box ul{
    padding-left:18px;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.training-box li{
    color:var(--muted);
    font-size:14px;
}

/* BOTTOM */

.training-bottom{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:50px;
}

.training-column h4{
    color:var(--green);
    margin-bottom:12px;
}

.training-column ul{
    padding-left:18px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.training-column li{
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
}

/* MOBILE */

@media(max-width:768px){

    .training-top{
        grid-template-columns:1fr;
    }

    .training-bottom{
        grid-template-columns:1fr;
    }

}

/* MOBILE */

@media(max-width:768px){
    .economy-grid{
        grid-template-columns:1fr;
    }
    .medical-grid{
        grid-template-columns:1fr;
    }

    .medical-images img{
        height:auto;
    }
    .education-gallery{
        grid-template-columns:1fr;
    }

    .education-stats{
        flex-direction:column;
        gap:10px;
    }

    .masterplan-grid{
        grid-template-columns:1fr;
    }

    .social-grid{
        grid-template-columns:1fr;
    }

    .social-images{
        grid-template-columns:1fr;
    }

}