.registration-page{

    max-width:1200px;
    margin:auto;
    padding:40px 20px 80px;
}

.page-title{

    text-align:center;
    margin-bottom:50px;
}

.page-title h1{

    color:#003366;
    margin-bottom:15px;
}

.page-title p{

    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* Registration */

.registration-box{

    display:flex;
    align-items:center;
    gap:40px;

    background:#a1c7ed;

    padding:35px;

    border-radius:15px;

    margin-bottom:60px;
}

.registration-icon{

    font-size:70px;
}

.registration-content{

    flex:1;

}

.register-button{

    display:inline-block;

    margin:25px 0;

    padding:14px 35px;

    background:#0055aa;

    color:white;

    text-decoration:none;

    border-radius:8px;

    transition:.3s;
}

.register-button:hover{

    background:#003f7d;
}

.deadline{

    color:#b00000;
    font-weight:bold;
}

/* Fees */

.fees-section h2{

    text-align:center;
    margin-bottom:30px;
}

.table-wrapper{

    overflow-x:auto;
}

.fees-table{

    width:100%;

    border-collapse:collapse;
}

.fees-table th{

    background:#003366;

    color:white;

    padding:16px;
}

.fees-table td{

    padding:15px;

    border:1px solid #ddd;

    text-align:center;
}

.fees-table tr:nth-child(even){

    background:#f8f8f8;
}

.fees-table tr:hover{

    background:#eef6ff;
}

/* Includes */

.includes{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin:60px 0;

}

.include-card{

    background-color: #d2f581;

    padding-left: 10rem;

    padding-top: 1rem;

    padding-bottom: 1rem;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.include-card ul {
    list-style: none;
}

.include-card li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.include-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;

    width: 20px;
    height: 20px;

    background: #0055aa;
    color: white;

    border-radius: 4px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 0.8rem;
    font-weight: bold;
}





.include-card h3{

    color:#003366;
}

.include-card ul{

    margin-top:20px;
    line-height:2;
}

/* Discount */

.discount-box{

    background:#fff7d6;

    border-left:6px solid orange;

    padding:25px;

    border-radius:10px;
}

.discount-box h3{

    margin-top:0;
}

/* Payment */

.payment-box{

    background:#f5f5f5;

    padding:35px;

    border-radius:15px;

    margin-bottom:60px;
}

.bank-table{

    width:100%;

    border-collapse:collapse;

    margin-bottom: 0;

}

.bank-table td{

    padding:14px;

    border-bottom:1px solid #ddd;
}

.bank-table td:first-child{

    font-weight:bold;

    width:220px;
}


/* Responsive */

@media(max-width:850px){

.registration-box{

    flex-direction:column;

    text-align:center;
}

.registration-icon{

    font-size:55px;
}

.bank-table td:first-child{

    width:auto;
}

}