*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    overflow-x:hidden;
}

body{
    font-family:"Zalando Sans Expanded","Ubuntu",Helvetica,Arial,sans-serif;
    background:#f5f7fa;
    color:#1e1e1e;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

h1,h2,h3,h4,h5,h6{
    font-weight:700;
}

p{
    color:#555;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

/* ===================================
   FINANCIALS SECTION
=================================== */
.financials-wrap{
    width:90%;
    max-width:1350px;
    margin:50px auto;
}

/* ===================================
   HEADING
=================================== */
.heading-block{
    margin-bottom:28px;
}

.heading-block h1{
    font-size:38px;
    color:#ff6600;
    line-height:1.2;
}

/* ===================================
   TABS
=================================== */
.tabs-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:35px;
}

.tab-btn{
    padding:14px 22px;
    background:#ffffff;
    border:1px solid #e3e8ef;
    border-radius:12px;
    font-size:14px;
    font-weight:700;
    transition:0.25s ease;
    color:#1e1e1e;
}

.tab-btn:hover{
    background:#eef4fb;
    color:#003a78;
    transform:translateY(-2px);
}

.tab-btn.active{
    background:#003a78;
    color:#fff;
    border-color:#003a78;
}

/* ===================================
   CONTENT AREA
=================================== */
.content-wrap{
    display:flex;
    flex-direction:column;
    gap:22px;
}

/* ===================================
   ROW BLOCK
=================================== */
.row-block{
    background:#fff;
    border-radius:18px;
    padding:28px;
    display:grid;
    grid-template-columns:280px 1fr;
    gap:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* ===================================
   LEFT SIDE
=================================== */
.left-side{
    border-right:1px solid #edf1f5;
    padding-right:20px;
}

.left-side h3{
    font-size:22px;
    color:#003a78;
    line-height:1.3;
}

/* ===================================
   RIGHT SIDE
=================================== */
.right-side{
    display:flex;
    flex-direction:column;
    gap:14px;
}

/* ===================================
   PDF ROW
=================================== */
.pdf-row{
    background:#f8fafc;
    border:1px solid #e5ebf2;
    border-radius:12px;
    padding:16px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    transition:0.25s ease;
    font-size:14px;
    font-weight:600;
}

.pdf-row:hover{
    background:#eef4fb;
    border-color:#c9d8ea;
    transform:translateY(-2px);
}

.pdf-row span:last-child{
    font-size:18px;
}

/* ===================================
   EMPTY STATE
=================================== */
.empty-box{
    background:#fff;
    border-radius:18px;
    padding:55px 30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.empty-box h3{
    font-size:30px;
    color:#003a78;
    margin-bottom:12px;
}

.empty-box p{
    font-size:15px;
    color:#666;
}

/* ===================================
   NO PDF
=================================== */
.no-pdf{
    font-size:14px;
    color:#777;
    background:#f8fafc;
    border-radius:12px;
    padding:14px 16px;
}

/* ===================================
   TABLET
=================================== */
@media(max-width:992px){

    .row-block{
        grid-template-columns:1fr;
        gap:20px;
    }

    .left-side{
        border-right:none;
        border-bottom:1px solid #edf1f5;
        padding-right:0;
        padding-bottom:15px;
    }

    .heading-block h1{
        font-size:32px;
    }
}

/* ===================================
   MOBILE
=================================== */
@media(max-width:768px){

    .financials-wrap{
        width:92%;
        margin:35px auto;
    }

    .heading-block h1{
        font-size:26px;
    }

    .tabs-wrap{
        gap:10px;
    }

    .tab-btn{
        width:100%;
        text-align:center;
        padding:13px 15px;
        font-size:13px;
    }

    .row-block{
        padding:20px;
        border-radius:16px;
    }

    .left-side h3{
        font-size:19px;
    }

    .pdf-row{
        padding:14px;
        font-size:13px;
    }

    .empty-box{
        padding:40px 20px;
    }

    .empty-box h3{
        font-size:24px;
    }
}