/** PROGRAM SECTION */
.program-section {
}

.program-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.program-row.reverse {
	flex-direction: row-reverse;
}

/* Phần văn bản */
.program-text {
	flex: 1 1 45%;
	padding: 0 40px;
}

.program-text h3 {
	font-size: 1.2rem;
	color: #4a90e2;
	margin-bottom: 5px;
}

.program-text h3.orange {
	color: #e67e22;
}

.program-text h2 {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 15px;
}

.program-text p {
	color: #555;
	font-size: 1rem;
	line-height: 1.6;
}

/* Khối ảnh */
.program-images {
	flex: 1 1 45%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 80px;
	height: auto;
	max-height: 600px;
	min-height: 500px;
}

/* Giữ hiệu ứng chồng ảnh nhất quán */
.yellow-bg img {
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
	position: absolute;
	width: 60%;
	transition: transform 0.3s ease;
}

.yellow-bg .img-top {
	transform: rotate(-3deg) translate(-15px, -20px);
	z-index: 2;
}

.yellow-bg .img-bottom {
	transform: rotate(5deg) translate(35px, 40px);
	z-index: 1;
}

/* Ảnh chồng */
.program-images img {
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
	position: absolute;
	width: 50%;
	max-width: 100%;
	height: auto;
	transition: transform 0.3s ease;
	object-fit: cover;
}

.img-top-left {
	transform: rotate(-5deg) translate(-20px, -20px);
	z-index: 2;
	top: 80px;
	left: 60px;
}

.img-top-right {
	transform: rotate(-5deg) translate(-20px, -20px);
	z-index: 2;
	top: 70px;
	right: 30px;
}

.img-bottom-left {
	transform: rotate(6deg) translate(40px, 40px);
	z-index: 1;
	bottom: 80px;
	left: 30px;
}

.img-bottom-right {
	transform: rotate(6deg) translate(40px, 40px);
	z-index: 1;
	bottom: 80px;
	right: 90px;
}

/* Badge ngôi sao */
.program-images>.badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: white;
	color: #e67e22;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 1.3rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

/* Hình tròn trang trí */
.circle {
	position: absolute;
	bottom: 40px;
	left: -50px;
	width: 140px;
	height: 140px;
	background: #e67e22;
	border-radius: 50%;
	z-index: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.feature-list li::before {
    content: '';
    min-width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 12px;
}

.feature-list .color-blue::before { background-color: #3b82f6; }
.feature-list .color-green::before { background-color: #16a34a; }
.feature-list .color-yellow::before { background-color: #f59e0b; }

/* Responsive */
@media (max-width: 600px) {
    .program-row, .program-row.reverse {
		flex-direction: column;
	}
	.program-images {
		padding: 60px;
		width: 100%;
		min-height: 420px;
	}
	.program-images img {
		width: 45%;
	}
    .program-text h2 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 15px;
    }
}
@media (min-width: 601px) and (max-width: 1024px) {
    .program-row, .program-row.reverse {
		flex-direction: column;
	}
	.program-images {
		padding: 60px;
		width: 100%;
		min-height: 420px;
	}
	.program-images img {
		width: 45%;
	}
    .program-text h2 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 15px;
    }
}
@media (min-width: 1025px) and (max-width: 9999px) {
	.program-images {
		padding: 60px;
		width: 100%;
		min-height: 500px;
	}
	.program-images img {
		width: 45%;
	}
}