.about-section {
    position: relative;
    display: flex;
    align-items: flex-start; 
    justify-content: center; 
    min-height: 100vh;
    background-color: #f8f9fa;
    padding-top: 20px; 
    padding-bottom: 40px; 
}

.about-section .container {
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0px; 
    margin-bottom: 20px; 
}

.about-text {
    flex: 2;
    max-width: 600px; 
}

.info-boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px; 
}

.card {
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.teaches-in {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    max-width: 100%; 
}

.tag {
    background-color: #e2e6ea;
    color: #333;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
	font-weight: 500;
}

.tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .tag {
        background-color: #e2e6ea;
        color: #333;
        padding: 5px 12px;
        border-radius: 15px;
        font-size: 14px;
        font-weight: 500;
    }

    .card {
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }