.container-in {
    line-height: 1.8;
    text-align: center;
    width: 90%;
    /* max-width: 1200px; */
    margin: auto;
    padding: 50px 20px;
}

.title {
    background: linear-gradient(135deg, #0d1b2a, #1b263b, #415a77);
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 24px;
}

.content-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: right;
}
.section-title {
    color: #007bff;
    font-size: 22px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}
.feature {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 10px);
    transition: 0.3s;
    font-weight: bold;
}
.feature:hover {
    background: #7ba6c9;
}

@media screen and (max-width: 768px) {
    .feature {
        flex: 1 1 100%;
    }
}
@media (max-width: 480px) {
    .title {
        background: #007bff;
        color: white;
        padding: 20px;
        font-size: 20px;
        border-radius: 10px;
        margin-bottom: 30px;
    }
    .container-in {
        line-height: 1.8;
        text-align: center;
        width: 100%;
        margin: auto;
        padding: 20px 20px;
    }
    .section-title {
        color: #007bff;
        font-size: 18px;
        border-bottom: 2px solid #007bff;
        padding-bottom: 5px;
        margin-bottom: 15px;
    }
  
}
