.main {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: auto;
}

.left {
    width: 50%;
    height: 20em;
    border-radius: 15em 0 0 15em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img>img {
    width: 80%;
    border-radius: 2em;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.right {
    width: 70%;
    height: 25em;
    border-radius: 1em;
    background-color: white;
}

@media only screen and (max-width:786px) {
    .main {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .left {
        width: 100%;
    }
    .img {
        width: 100%;
        margin: 0 auto;
    }
    .img>img {
        width: 100%;
        border-radius: 2em;
    }
}

.services-section {
    background-color: #ffffff;
    padding: 30px 20px;
    max-width: 700px;
    margin: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.services-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 22px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.service-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .services-section {
        padding: 20px 15px;
    }
    .service-text {
        font-size: 15px;
    }
    .right {
        width: 100%;
        height: 100%;
    }
    .left {
        height: 100%;
        margin-bottom: 20px;
    }
    .features-section {
        margin: 0;
    }
}


/* footer .nav-link {
    color: #ffffff !important;
    transition: color 0.3s ease;
    background: #345c72;
    width: 100px;
    margin: 1px;
} */