*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}



/* MAIN */

.retirement-wrapper{
    max-width:1350px;
    margin:auto;
	
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

/* TOP */

.retirement-top{
    display:flex;
    flex-wrap:wrap;
}

/* LEFT PANEL */

.retirement-left{
    width:35%;
    background:#ea3c01;
    padding:40px;
    color:#fff;
    position:relative;
}

.retirement-left img{
    width:100%;
    border-radius:20px;
    margin-bottom:25px;
}

.retirement-left h2{
    font-size:34px;
    margin-bottom:10px;
}

.retirement-left p{
    font-size:15px;
    line-height:1.7;
    margin-bottom:30px;
}

.retirement-field{
    margin-bottom:22px;
}

.retirement-field label{
    display:block;
    margin-bottom:10px;
    font-size:15px;
    font-weight:500;
}

.retirement-field input{
    width:100%;
    padding:15px;
    border:none;
    border-radius:12px;
    font-size:16px;
    outline:none;
}

.calculate-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#fff;
    color:#00acc1;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    margin-top:10px;
}

/* RIGHT */

.retirement-right{
    width:65%;
    padding:40px;
}

.retirement-title{
    font-size:32px;
    color:#00acc1;
    margin-bottom:25px;
    font-weight:700;
}

/* RESULT BOX */

.result-row{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:35px;
}

.result-box{
    flex:1;
    min-width:200px;
    padding:25px;
    border-radius:18px;
    color:#fff;
}

.result-box span{
    display:block;
    font-size:14px;
    margin-bottom:10px;
}

.result-box h3{
    font-size:28px;
    font-weight:700;
}

.box1{
    background:linear-gradient(135deg,#00bcd4,#26c6da);
}

.box2{
    background:linear-gradient(135deg,#43a047,#66bb6a);
}

.box3{
    background:linear-gradient(135deg,#fb8c00,#ffb74d);
}

/* CHART */

.chart-box{
    background:#f8feff;
    padding:25px;
    border-radius:20px;
    border:1px solid #d7f4f9;
}

canvas{
    width:100% !important;
    height:450px !important;
}

/* TABLE */

.table-section{
    padding:40px;
    background:#f8fdff;
}

.table-title{
    font-size:30px;
    color:#00acc1;
    margin-bottom:25px;
    font-weight:700;
}

.table-responsive{
    overflow-x:auto;
}

table{
    width:100%;
    border-collapse:collapse;
    min-width:950px;
}

table th{
    background:#ea3c01;
    color:#fff;
    padding:18px;
    font-size:15px;
}

table td{
    padding:15px;
    text-align:center;
    border-bottom:1px solid #d8f3f8;
    font-size:14px;
}

table tr:nth-child(even){
    background:#f2fcff;
}

/* MOBILE */

@media(max-width:992px){

    .retirement-left,
    .retirement-right{
        width:100%;
    }

}

@media(max-width:600px){

    body{
        padding:15px;
    }

    .retirement-left,
    .retirement-right,
    .table-section{
        padding:25px;
    }

    .result-box{
        min-width:100%;
    }

    .retirement-title,
    .table-title,
    .retirement-left h2{
        font-size:28px;
    }

}