*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    padding-bottom: 15px;
}

html, body {
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    
}

.header-text{
    font-size: 20px;
}
.bg2 {
    background-color: #E8EAEC;
    min-height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    padding: 0;
}
.ffp-container{
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;

    border-radius: 10px;
    
}
.ffp1-image{
 
    width: 20%;
    height: 100%;
 
    border-radius: 10px;
   
}
.ffp2-image{
    width: 20%;
    height: 100%;
   
    border-radius: 10px;
   
}
.ffp-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}
.header{
    padding-top: 100px;
    font-family: 'NavbarFont', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 60px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}

/* For Kurdish language, make header font-size smaller on small screens */

.header-text{
   padding-top: 40px;
    font-size: 25px;
    color: #000;
    font-family: 'NavbarFont', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    margin-bottom: 0;
   
}

/* Media query for screens less than 600px */
@media (max-width: 600px) {
    .ffp1-image {
        width: 25%;
        height: 80%;
        margin-top: -200px;
    }
    
    .ffp2-image {
        margin-right: -50px;
        width: 25%;
        height: 80%;
        margin-top: 200px;
    }
    
    .ffp-container {
        padding: 10px;
    }
    
    .header {
        font-size: 40px;
        padding-top: 30px;
    }
    
    .header-text {
        font-size: 16px;
        padding-top: 20px;
    }
}



/* Extra small screens for Kurdish */
@media (max-width: 600px) {
    body[lang="ku"] .ffp1-image {
        width: 23%;
        margin-left: -30px;
        position: relative;
        top: -20px;
    }
    
    body[lang="ku"] .ffp2-image {
        width: 23%;
        position: relative;
        left: -35px;
    }
    
    body[lang="ku"] .header {
        font-size: 60px;
    }
    
    body[lang="ku"] .header-text {
        font-size: 18px;
        padding-left: 25px;
        padding-right: 25px;
        position: relative;
        top: 20px;
       
    }
}