
.reasons-section {
    background: #f8fbff;
    font-family: Arial, sans-serif;
}
.reasons-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 40px;
    background: var(--color-grey-97, #F2F6FE);
}
.reasons-left {
    flex: 1;
    min-width: 300px;
	display: grid;
    gap: 20px;
}
.reasons-left h2 {
    font-size: 1.8rem;
    color: #3566a9;
    margin-bottom: 30px;
}
.reasons-left h2 span {
    color: #555;
}

.reason-card {
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    align-items: flex-start;
}
.reason-card h4 {
	margin-bottom: 5px;
	font-size: 1.05rem;
	color: #333;
}
.reason-card p {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.5;
}

.reasons-right {
	flex: 1;
	min-width: 300px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background: linear-gradient(180deg, #2B7FFF 0%, #1A4C99 100%);
	border-radius: 12px;
	padding: 20px;
	flex-direction: column;
}

.num {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
.blue {
    background: #3d7df0;
}
.green {
    background: #28a745;
}
.yellow {
    background: #ffc107;
    color: #333;
}
.pink {
    background: #e83e8c;
}
.image-wrapper {
    background: linear-gradient(135deg, #F9FAFB 0%, #2B7FFF 100%);
    padding: 10px;
    border-radius: 12px;
    max-width: 500px;
}
.image-wrapper img {
    width: 100%;
	height: 100%;
    border-radius: 8px;
    display: block;
}

/* Responsive */
@media (max-width: 600px) {
	.reasons-section {
		padding: 20px 40px;
		margin-bottom: 0;
	}
	.reasons-container {
		flex-direction: column-reverse;
    }
    .reasons-right {
		order: -1;
    }
    .reasons-left h2 {
		text-align: center;
    }
}
@media (min-width: 601px) and (max-width: 1024px) {
	.reasons-section {
		padding: 20px 40px;
		margin-bottom: 0;
	}
	.reasons-container {
		flex-direction: column-reverse;
    }
    .reasons-right {
		order: -1;
    }
    .reasons-left h2 {
		text-align: center;
    }
}
@media (min-width: 1025px) {
	.reasons-section {
		padding: 40px 60px;
	}
	.image-wrapper {
		max-height: 300px;
	}
}
