.Education {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9; /* Light background color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.education-content {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between image and text */
    flex-direction: row; /* Ensure image is on the left */
}

.education-content img {
    width: 100px; /* Fixed width for images */
    height: auto;
    border-radius: 50%; /* Circular images */
}

.education-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333; /* Dark text color */
}

.certification {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9; /* Light background color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.certification-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333; /* Dark text color */
}

.certification-content {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between image and text */
    flex-direction: row; /* Ensure image is on the left */
}

.certification-content img {
    width: 100px; /* Fixed width for images */
    height: auto;
    border-radius: 50%; /* Circular images */
}
