@charset "utf-8";
/* CSS Document */

/* ===== BUSY ACCOUNTING SOFTWARE PAGE CSS ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
    background:#f5f7fb;
    color:#222;
    line-height:1.8;
}

.busy-accounting-page{
    width:100%;
}

.busy-accounting-hero{
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    padding:90px 20px;
    color:#fff;
}

.busy-accounting-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.busy-accounting-hero h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.busy-accounting-hero p{
    font-size:18px;
    max-width:900px;
    opacity:.95;
}

.busy-accounting-section{
    padding:80px 20px;
}

.busy-accounting-section-white{
    background:#fff;
}

.busy-accounting-section-gray{
    background:#f5f7fb;
}

.busy-accounting-title{
    font-size:38px;
    margin-bottom:25px;
    color:#111827;
    line-height:1.3;
}

.busy-accounting-text{
    font-size:17px;
    color:#4b5563;
    margin-bottom:22px;
}

.busy-accounting-list{
    margin-top:25px;
    padding-left:20px;
}

.busy-accounting-list li{
    margin-bottom:15px;
    color:#374151;
    font-size:17px;
}

.busy-accounting-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:45px;
}

.busy-accounting-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.07);
    transition:.3s;
    border:1px solid #e5e7eb;
}

.busy-accounting-card:hover{
    transform:translateY(-8px);
}

.busy-accounting-card h3{
    font-size:24px;
    margin-bottom:18px;
    color:#1e3a8a;
}

.busy-accounting-card p{
    color:#4b5563;
    font-size:16px;
}

.busy-accounting-highlight{
    background:#eff6ff;
    border-left:5px solid #2563eb;
    padding:22px;
    margin-top:22px;
    border-radius:10px;
    color:#1e3a8a;
    font-weight:600;
}

.busy-accounting-table{
    width:100%;
    border-collapse:collapse;
    margin-top:40px;
    background:#fff;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.busy-accounting-table th{
    background:#1e3a8a;
    color:#fff;
    padding:18px;
    text-align:left;
    font-size:17px;
}

.busy-accounting-table td{
    padding:18px;
    border-bottom:1px solid #e5e7eb;
    font-size:16px;
    color:#4b5563;
}

.busy-accounting-table tr:last-child td{
    border-bottom:none;
}

.busy-accounting-faq{
    margin-top:40px;
}

.busy-accounting-faq-item{
    background:#fff;
    margin-bottom:20px;
    padding:30px;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.busy-accounting-faq-item h4{
    font-size:22px;
    margin-bottom:15px;
    color:#111827;
}

.busy-accounting-faq-item p{
    color:#4b5563;
    font-size:16px;
}

.busy-accounting-conclusion{
    background:linear-gradient(135deg,#111827,#1e40af);
    color:#fff;
    border-radius:24px;
    padding:60px;
    margin-top:60px;
}

.busy-accounting-conclusion h2{
    font-size:40px;
    margin-bottom:25px;
}

.busy-accounting-conclusion p{
    font-size:18px;
    opacity:.95;
    margin-bottom:20px;
}

@media(max-width:768px){

    .busy-accounting-hero h1{
        font-size:34px;
    }

    .busy-accounting-title{
        font-size:30px;
    }

    .busy-accounting-conclusion{
        padding:35px 25px;
    }

    .busy-accounting-conclusion h2{
        font-size:30px;
    }

}
.cta-btn {
    display: inline-block;
    padding: 16px 34px;
    background: #fff;
    color: #111827;
    font-weight: 700;
    border-radius: 14px;
}
