
.patron-profile-section {
    min-height: 100vh;
    padding: 80px 0;
    background-color: #F1FFEF;
}

.back-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #025836;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.back-nav:hover {
    color: black;
    text-decoration: none;
}

.back-nav i {
    font-size: 18px;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.profile-content {
    display: block; /* Remove flex */
}

.profile-image-container {
    float: left; /* Let text wrap around */
    margin: 0 20px 20px 0; /* Space around the image */
    max-width: 450px;
}

.profile-image {
    width: 100% !important;
    height: auto !important; /* Keep proportions */
    border-radius: 4px !important;
    object-fit: cover !important;
    background-color: #02583633 !important;
}


.profile-info {
    flex: 1;
    padding-top: 0px;
}

.profile-name {
    font-size: 3rem;
    font-weight: 700;
    color: black;
    margin-bottom: 15px;
    line-height: 1.2;
}

.profile-title {
    font-size: 1.4rem;
    color: #025836;
    font-weight: 500;
    margin-bottom: 40px;
}

.profile-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: black;
    margin-bottom: 25px;
    text-align: justify;
}

.profile-bio p {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .profile-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .profile-image-container {
        flex: none;
        max-width: 350px;
        margin: 0 auto;
    }

    .profile-image {
        height: 400px;
    }

    .profile-name {
        font-size: 2.5rem;
    }

    .profile-info {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .profile-content{
        display: flex;
        justify-content: center;
        align-items: center;

    }
    .patron-profile-section {
        padding: 40px 0;
    }

    .profile-image-container {
        max-width: 300px !important;
    }

    .profile-image {
        height: 350px !important;
        width: 300px !important;
    }

    .profile-name {
        font-size: 2rem;
    }

    .profile-title {
        font-size: 1.2rem;
    }

    .profile-bio {
        font-size: 1rem;
    }
}