
/*
Theme Name: FinanceAI Premium
Version: 2.0
*/

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f5f7fb;
    color:#111827;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

header{
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    position:sticky;
    top:0;
    z-index:999;
}

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    height:42px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav a{
    color:#111827;
    font-weight:600;
    text-decoration:none;
}

.subscribe-btn{
    background:#2563eb;
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
}

.hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    padding:80px 0;
}

.hero h1{
    font-size:56px;
    line-height:1.1;
}

.hero img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.section-title{
    font-size:36px;
    margin:50px 0 30px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card h3{
    margin-top:0;
}

.newsletter{
    background:#fff;
    padding:50px;
    margin:70px 0;
    border-radius:20px;
    text-align:center;
}

footer{
    background:#fff;
    padding:60px 0;
    margin-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
}
