/* Page Hero Section */
.page-hero {
    position: relative;
    background-color: #f9f5f0;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg-left {
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.page-hero-bg-right {
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #132530;
    margin: 0 0 15px 0;
    text-align: start;
    letter-spacing: -0.5px;
}

.page-hero-breadcrumb {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-hero-breadcrumb a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.page-hero-breadcrumb a:hover {
    color: #304B3B;
}

.page-hero-breadcrumb .breadcrumb-separator {
    color: #999;
    font-size: 12px;
}

.page-hero-breadcrumb .breadcrumb-current {
    color: #304B3B;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .page-hero-bg-left svg {
        width: 200px;
        height: auto;
    }

    .page-hero-bg-right svg {
        width: 140px;
        height: auto;
    }
}