/* Style for education section with image on the left and content on the right */
.education-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}
#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid crimson;
	z-index: -1;
}

.education-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta {
    display: inline-block;
    padding: 10px 30px;
    color: black;
    background-color: transparent;
    border: 2px solid crimson;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-top: 30px;
    transition: 0.3s ease;
    transition-property: background-color, color;
}
.cta:hover {
    background-color: crimson;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .education-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .education-image {
        max-width: 100%;
        margin-bottom: 1rem;
    }
}