.title {
    background: linear-gradient(135deg, #0d1b2a, #1b263b, #415a77);
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 24px;
}



.container-in {
    width: 90%;
    /* max-width: 1500px; */
    margin: 0 auto;
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  
}


.row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}


.col {
    flex: 1;
}


.content-section {
    background: #f4f4f4 ;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.9);
}


.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #0073e6;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.3s;
    font-size: 22px;
}

.section-title:hover {
    color: #005bb5;
}


.ultitle {
    list-style: none;
    padding: 0;
    text-align: right;
 
}

.ultitle li {
    font-size: 22px;
    padding: 10px;
    background: #f1f1f1;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ultitle li:hover {
    background: linear-gradient(to right, #005bb5, #9fbfdf);
    color: rgb(255, 255, 255);
    transform: scale(1.03);
}


.button-1:hover {
    background: linear-gradient(to right, #005bb5, #9fbfdf);
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .container-in {
        padding: 30px 15px;
    }

    .row {
        flex-direction: column;
    }

    .col {
        width: 100%;
    }

    .section-title {
        font-size: 20px;
    }

    ul li {
        font-size: 16px;
        padding: 8px;
    }

    .button-1 {
        font-size: 16px;
        padding: 10px 15px;
    }
}
