/* ======= INFO DIV ======= */
.info-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 4rem;
    min-height: 85vh;
    background-color: #220041; /* light neutral background */
}

/* LEFT SECTION */
.info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}


.info-section-text-div {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.info-section-action-div{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.info-section-title {
    font-size: 2.6rem;
    font-weight: bold;
    color: #f0f8ff;
    text-align: left;
    padding-bottom: 1.5rem;
}

.info-section-text {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #f7f6f8;
    text-align: left;
    padding-left: 0.5em;
}

.info-section-text ul {
    margin-left: 1rem;
}

.info-section-text ul li {
    margin-top: 0.5rem;
    position: relative;
}


/* BUTTONS */
.info-section-action {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}
.info-section-btn {
    background-color: #220041;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-section-btn:hover {
    opacity: 0.85;
}

.info-btn-link {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.info-section-btn-secondary {
    color: #f0f8ff;
    font-weight: bold;
}

.tick {
    color: #f0f8ff;
    font-size: 1em;
    font-weight: 400;
    cursor: pointer;
}

.tick-test{
    color: #f0f8ff;
}

/* RIGHT IMAGE */
.info-section-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image-bg {
    width: 65%;
}

.info-image {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

/* ======= RESPONSIVE ======= */
@media screen and (max-width: 1024px) {
    .info-div {
        flex-direction: column;
        padding: 2rem;
    }

    .info-section, .info-section-img {
        width: 100%;
        text-align: center;
    }

    .info-section-action {
        justify-content: center;
    }

    .info-section-text ul {
        margin-left: 0;
        padding-left: 0;
    }

    .info-section-text ul li::before {
        left: -1.5rem;
    }
}



/* Main more info body */
.more-info {
    width: 85%;
    margin: 3rem auto;
    padding: 2rem 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}


/* Services Menu */
.services-offer {
    width: 100%;
    max-width: 1000px;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 22px;
    background: #faf9ff;
    box-shadow: 0px 16px 15px 1px rgba(0, 0, 0, 0.06);
}

.services-offer-box {
    padding: 0.8rem 1.3rem;
    min-width: 100px;
    border-radius: 18px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.services-offer-box:hover {
    transform: translateY(-4px);
    background: white;
}


/* Selected State */
.service-selected {
    background: white;
    border: 1px solid rgba(0,0,0,0.07);
}


.service-explain {
    display: none;
}

.service-explain.active {
    display: flex; 
}
