/* Service List Section CSS - Consolidated from newHomePgae.css and argumentative-essay.css */

/* Service List Section */
.serviceList-section {
    padding: 60px 0;
}

.serviceList-section.bg {
    background: linear-gradient(180deg, #EBF7FF 0%, #FDF5EB 100%);
}

.serviceList-section h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 44.27px;
    text-align: center;
    color: #161616;
    margin-bottom: 15px;
}

/* Section Description */
.sec__desc p{
    font-weight: 450;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    color: #575e62;
    margin: 0 auto;
}

/* List Wrapper */
.list-wrapper {
    max-width: max-content;
    width: 100%;
    margin: 50px auto 50px;
    background-color: white;
    border-radius: 45px;
    padding: 60px;
    display: flex;
    gap: 46px;
    justify-content: center;
    box-shadow: 0px 5px 24px 0px #00000014;
}

.serviceList-section.bg .list-wrapper {
    background-color: white;
}

.list-wrapper ul {
    display: flex;
    gap: 16px;
    flex-direction: column;
    padding-left: 20px;
}

.list-wrapper ul li {
    transition: all .3s;
}

.list-wrapper ul li a {
    color: #233f8c;
    text-decoration: underline;
    font-weight: 450;
    font-size: 17px;
    line-height: 160%;
}

.list-wrapper ul li a:hover {
    text-decoration: none;
}

/* Narrative Service Variant */
.narrativeService .list-wrapper ul {
    display: flex;
    gap: 60px;
    flex-direction: row;
    padding-left: 20px;
}

.narrativeService .list-wrapper {
    max-width: 892px;
    width: 100%;
    margin: 50px auto 50px;
    background-color: white;
    border-radius: 45px;
    padding: 60px;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .serviceList-section {
        padding: 60px 0;
    }
    .list-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 35px;
    }
    .list-wrapper ul {
        padding-left: 20px;
    }
    .serviceList-section h2 {
        font-size: 24px;
        line-height: 150%;
    }
    .sec__desc p{
        font-size: 15px;
        width: 100%;
        margin: 0 auto;
        line-height: 150%;
    }
    /* List Wrapper */
    .list-wrapper {
        flex-wrap: wrap;
        gap: 16px;
    }
}
