/*
Theme Name: F2PDF Clean Theme
Theme URI: https://f2pdf.com/
Author: F2PDF
Version: 3.0.0
Description: Minimal clean theme for F2PDF tools. Use with F2PDF Simple 50 Tools plugin.
*/
body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        Arial,
        sans-serif;
    background: #f5f7fb;
    color: #0f172a;
}
a {
    text-decoration: none;
    color: inherit;
}
.site-header {
    height: 74px;
    background: #fff;
    border-bottom: 1px solid #e5eaf3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 38px;
}
.brand {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.brand span {
    background: #155dfc;
    color: #fff;
    border-radius: 10px;
    padding: 6px 8px;
    margin-right: 3px;
}
.site-header nav {
    display: flex;
    gap: 22px;
    font-weight: 800;
    color: #475569;
}
.page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 22px;
}
.card {
    background: #fff;
    border: 1px solid #e5eaf3;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.07);
}
.card h1 {
    font-size: 54px;
    line-height: 1;
    margin: 0 0 14px;
    letter-spacing: -0.055em;
}
.btn {
    display: inline-flex;
    background: #155dfc;
    color: #fff;
    border-radius: 14px;
    padding: 14px 22px;
    font-weight: 900;
    margin-top: 16px;
}
@media (max-width: 700px) {
    .site-header {
        height: auto;
        display: block;
        padding: 18px;
    }
    .site-header nav {
        flex-wrap: wrap;
        margin-top: 14px;
    }
    .card h1 {
        font-size: 38px;
    }
}


/*=========================================
    Footer
=========================================*/

.f2-footer{
    margin-top:80px;
    background:#ffffff;
    border-top:1px solid #e5e7eb;
}

.f2-footer-container{
    max-width:1200px;
    margin:auto;
    padding:70px 20px 30px;
}

.f2-footer-top{
    display:flex;
    justify-content:space-between;
    gap:70px;
    margin-bottom:50px;
}

.f2-footer-about{
    flex:1;
    max-width:360px;
}

.f2-footer-logo{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:30px;
    font-weight:800;
    color:#0f172a;
    text-decoration:none;
    margin-bottom:18px;
}

.f2-footer-logo span{
    background:#2563eb;
    color:#fff;
    border-radius:8px;
    padding:6px 10px;
    font-size:18px;
}

.f2-footer-about p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
}

.f2-footer-links{
    display:flex;
    gap:70px;
}

.f2-footer-column h4{
    margin-bottom:18px;
    color:#0f172a;
    font-size:17px;
}

.f2-footer-column ul{
    margin:0;
    padding:0;
    list-style:none;
}

.f2-footer-column li{
    margin-bottom:12px;
}

.f2-footer-column a{
    color:#64748b;
    text-decoration:none;
    transition:.3s;
    font-size:15px;
}

.f2-footer-column a:hover{
    color:#2563eb;
}

.f2-footer-bottom{
    border-top:1px solid #e5e7eb;
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.f2-footer-bottom p{
    color:#64748b;
    margin:0;
    font-size:14px;
}

.f2-footer-bottom-links{
    display:flex;
    gap:25px;
}

.f2-footer-bottom-links a{
    color:#64748b;
    text-decoration:none;
    font-size:14px;
}

.f2-footer-bottom-links a:hover{
    color:#2563eb;
}

/*=========================================
    Responsive
=========================================*/

@media (max-width:992px){

    .f2-footer-top{
        flex-direction:column;
        gap:40px;
    }

    .f2-footer-links{
        flex-wrap:wrap;
        gap:40px;
    }

}

@media (max-width:768px){

    .f2-footer-links{
        flex-direction:column;
    }

    .f2-footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .f2-footer-bottom-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .f2-footer-container{
        padding:60px 18px 25px;
    }

}

@media (max-width:480px){

    .f2-footer-logo{
        font-size:26px;
    }

    .f2-footer-column h4{
        font-size:16px;
    }

    .f2-footer-column a,
    .f2-footer-about p{
        font-size:14px;
    }

}