

/* Media Queries for Responsiveness */
@media only screen and (min-width: 864px) and (max-width: 991px) {
    .about-me-section {
        background-color: red;
    }
}

@media only screen and (max-width: 863px) {
    .about-me-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-me-content {
        margin-top: 20px;
    }
    
    .about-me-content h1 {
        font-size: 28px;
    }
    
    .about-me-section {
        background-color: #fff;
    }

    .about-me-container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 20px;
        display: flex;
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 450px) {
    .about-me-section {
        background-color: #fff;
        padding: 0;
    }
    .about-me-container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
    }

    .about-me-image img {
        flex: 1;
        width: 100%;
        height: 300px;
        border-radius: 5px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        animation: fadeIn 2s ease;
        margin-bottom: 15px;
    }
}