.advantage-section{
    padding: 40px 20px;
    padding-top: 180px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.advantage-section h1{
    font-family: Lora;
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    color: #222222;
    text-align: center;
    margin-bottom: 60px;
}

.aba-advantage {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.aba-advantage .advantage-item {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.aba-advantage .advantage-item .media {
    max-width: 600px;
    width: 100%;
}
.aba-advantage .advantage-item .media img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.aba-advantage .advantage-item .content {
    max-width: 670px;
    width: 100%;
}
.aba-advantage .advantage-item .content h3 {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    color: #222222;
    margin-bottom: 16px;
}
.aba-advantage .advantage-item .content p {
    font-family: Open Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #555555;
    margin-bottom: 24px;
}
.aba-advantage .advantage-item .content .learn-more {
    background-color: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}
.aba-advantage .advantage-item .content .learn-more:hover {
    background-color: #0056b3;
}
.aba-advantage .advantage-item.reverse {
    flex-direction: row-reverse;
}
/* Responsive */

@media only screen and (max-width: 1023px) {
	.advantage-section h1{
    	font-size: 36px;
    	line-height: 46px;
	    margin-bottom: 50px;
    }
    .aba-advantage .advantage-item .content h3{
    	font-size: 26px;
    	line-height: 32px;
    }
    .advantage-section{
    	padding-top: 150px;
    }
}

@media (max-width: 768px) {
    .aba-advantage .advantage-item {
        flex-direction: column !important;
   }
   .advantage-section h1{
   		font-size: 30px;
        line-height: 40px;
        margin-bottom: 40px;
   }
   .advantage-section {
   		padding: 30px 20px;
        padding-top: 130px;
    }
    .aba-advantage .advantage-item .content h3 {
        font-size: 22px;
        line-height: 28px;
    }
    .aba-advantage .advantage-item .content p{
    	font-size: 16px;
    	line-height: 28px;
    }
    .aba-advantage{
    	gap: 40px;
    }
}