.about-hero {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.about-text-wrapper {
    padding-right: 20px;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

.content-body p {
    margin-bottom: 1.5rem;
}

.about-us-banner-slider {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pbs-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.pbs-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.pbs-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    display: block;
}

.pbs-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0,0,0,0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.2s ease;
}

.pbs-btn.prev { left: 10px; padding-right: 2px; }
.pbs-btn.next { right: 10px; padding-left: 2px; }

.pbs-btn:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.1);
}

.pbs-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.pbs-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pbs-dot.active {
    background: #0d6efd;
    width: 18px;
    border-radius: 10px;
    border-color: transparent;
}

@media (max-width: 991.98px) {
    .about-hero {
        height: 250px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-text-wrapper {
        padding-right: 0;
        text-align: center;
    }
}