
.center-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.center-image img {
    width: 250px;
   height: 300px;
    border-radius: 5px;
    object-fit: cover;
}

.info-section {
    background: white;
    padding: 20px;
    border-radius: 5px;
    flex: 1;

}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px dotted #CE8711;
}

.info-table td {
    padding: 15px 5px;
    font-size: 14px;
}

.info-table td:nth-child(odd) {
    font-weight: bold;
}

.info-table td:nth-child(even) {
    color: #666;
}



.evaluation-text {
    position: relative;
}

.evaluation-content {
    color: #666;
    line-height: 1.8;
    text-indent: 2em;
    font-size: 14px;
    background: white;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    display: flex;
    min-height: calc(100% - 40px);
    align-items: stretch;
}


.evaluation-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eval-image {
    width: 200px;
    height: 120px;
    border-radius: 5px;
    overflow: hidden;
}

.eval-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 768px) {
    .evaluation-content { padding-right: 20px; }
    .evaluation-images { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .eval-image { width: calc(50% - 5px); height: 100px; }
}
.profile-content{
    display: flex;
    background: #fff;
    border-radius: 5px;
    align-items: center;
}

@media (max-width: 1024px) {
    .profile-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .center-image img {
        max-width: 100%;
        height: auto;
        max-height: 250px;
    }
    .info-section { padding: 20px; }
}

@media (max-width: 768px) {
    .info-section { padding: 15px; }
    .info-table td { padding: 10px 4px; }
}