.about-me-container-2646 {
    display: flex;
    width: 100%;
    min-height: 500px;
    background-color: #fdfbf7; /* Fallback default */
}

.about-me-image-2646 {
    width: 33.333%;
    background-size: cover;
    background-position: center;
    border-right: 2px solid #000; /* Fallback default */
    min-height: 100%;
}

.about-me-content-2646 {
    width: 66.666%;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.about-me-top-section-2646 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.about-me-titles-2646 {
    flex: 1;
}

.about-me-header-2646 {
    margin: 0;
    padding: 0;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
}

.about-me-header-2646 span {
    display: inline-block;
    margin-right: 8px; /* Little gap between words */
}

.about-me-header-2646 span:last-child {
    margin-right: 0;
}

.about-me-subheader-2646 {
    font-size: 1.5rem;
    margin-top: 10px;
}

.about-me-icon-2646 {
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.about-me-icon-2646 img {
    max-width: 100px; /* Fallback default */
    height: auto;
}

.about-me-list-2646 {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}

/* Top border pseudo-element */
.about-me-list-2646::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Can be overridden by controls */
    height: 1px;
    background-color: #000;
    display: block;
}

.about-me-list-item-2646 {
    display: flex;
    padding: 15px 0; /* Fallback default */
    position: relative;
}

/* Bottom border pseudo-element for each item */
.about-me-list-item-2646::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; /* Can be overridden by controls */
    height: 1px;
    background-color: #000;
    display: block;
}

.about-me-list-item-2646 .detail-label-2646 {
    width: 30%;
    font-weight: 700;
    text-transform: uppercase;
}

.about-me-list-item-2646 .detail-value-2646 {
    width: 70%;
}

/* Responsive */
@media (max-width: 768px) {
    .about-me-container-2646 {
        flex-direction: column;
    }
    .about-me-image-2646 {
        width: 100%;
        height: 300px;
        border-right: none !important;
        border-bottom: 2px solid #000;
    }
    .about-me-content-2646 {
        width: 100%;
        padding: 30px 20px;
    }
    .about-me-list-item-2646 {
        flex-direction: column;
    }
    .about-me-list-item-2646 .detail-label-2646,
    .about-me-list-item-2646 .detail-value-2646 {
        width: 100%;
    }
    .about-me-list-item-2646 .detail-label-2646 {
        margin-bottom: 5px;
    }
}