/* Modern About Us Page Styles - Restored & Cleaned */
:root {
    --color-primary: #f3743f;
    --color-text-dark: #101010;
    --color-text-gray: #666666;
    --color-light-bg: #f8f9fa;
    --color-border: #e9ecef;
}

/* Minimal Hero - Consistent with Contact Page */
.page-hero {
    padding: 30px 0 20px;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 50px;
}

.page-hero h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 5px;
    display: inline-block;
}

.page-hero .breadcrumb {
    font-size: 0.85rem;
    margin-top: 10px;
}

.page-hero .breadcrumb-item a {
    color: var(--color-text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.page-hero .breadcrumb-item a:hover {
    color: var(--color-primary);
}

.page-hero .breadcrumb-item.active {
    color: var(--color-text-dark);
    font-weight: 500;
}

/* About Section */
.about-section {
    padding-bottom: 80px;
}

.about-content {
    padding-right: 30px;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--color-primary);
    line-height: 1.2;
}

.about-text {
    color: var(--color-text-gray);
    font-size: 1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    /* Clean slate - no padding for patterns */
    padding: 0;
}

.about-image {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    /* Kept the nice shadow */
    position: relative;
    z-index: 2;
    background: #fff;
    object-fit: cover;
    min-height: 400px;
}

/* Removed ::before and ::after patterns as requested */

@media (max-width: 768px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}