:root{
    --kb-primary:#65ccfc;
    --kb-secondary:#26a8f3;
    --kb-light:#f4f8ff;
}

/* BODY */
body{
    font-family: 'Poppins', sans-serif;
    background-color: var(--kb-light);
    margin:0;
}

/* HERO */
.hero{
    background: linear-gradient(to right, var(--kb-primary), var(--kb-secondary));
    color:white;
    text-align:center;
    padding:100px 20px;
}

.hero img{
    width:90px;
    margin-bottom:20px;
}

.hero h1{
    font-weight:600;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

/* SECTION */
.section-pk{
    padding:80px 20px;
    background-color: rgb(255, 255, 255);
}
.section-dpk{
    padding:80px 20px;
    background-color: rgb(45, 193, 251);

}

.section{
    padding:80px 20px;
    background-color: rgb(45, 193, 251);

}
.section-title{
    text-align:center;
    font-weight:600;
    color:white;
    margin-bottom:50px;
}



/* GRID */
.info-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
   
}


/* BOX */
.info-box{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    text-align:left;
    transition:0.3s;
}

.info-box:hover{
    transform:translateY(-5px);
}

.info-box i{
    font-size:35px;
    color:var(--kb-secondary);
    margin-bottom:15px;
}

.info-box h4{
    font-weight:600;
    color:var(--kb-primary);
    margin-bottom:10px;
}

.info-box p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* CTA */
.cta-section{
    background:rgb(255, 255, 255);
    padding:90px 20px;
}

.cta-wrapper{
    max-width:1100px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:50px;
}

.cta-text{
    flex:1;
}

.cta-text h2{
    color:var(--kb-primary);
    font-weight:600;
    margin-bottom:20px;
}

.cta-text p{
    color:#555;
    margin-bottom:25px;
}

.btn-kb{
    background:var(--kb-secondary);
    color:white;
    padding:12px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.btn-kb:hover{
    background:var(--kb-primary);
}

.cta-image{
    flex:1;
    text-align:center;
}

.cta-image img{
    max-width:100%;
    border-radius:15px;
}

/* STATISTIK */
.stat-number{
    font-size:28px;
    font-weight:600;
    color:var(--kb-secondary);
}

/* FOOTER */
footer{
    background:var(--kb-primary);
    color:white;
    padding:50px 20px;
}

.footer-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:40px;
}

footer h5{
    font-weight:600;
    margin-bottom:15px;
}

footer p{
    font-size:14px;
    opacity:0.9;
}

footer hr{
    margin:30px 0;
    opacity:0.3;
}
