.inner-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}


.inner-hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}


.inner-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}


.content-area {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}


.sidebar {
    width: 250px;
    margin-right: 40px;
}


.sidebar h2 {
    font-size: 24px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
}


.sidebar ul {
    list-style: none;
    padding: 0;
}


.sidebar li {
    margin-bottom: 10px;
}


.sidebar a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 12px 15px;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}


.sidebar a:hover,
.sidebar a.active {
    background-color: #e0e0e0;
    color: #007bff;
    font-weight: bold;
    border-left-color: #007bff;
}


.contact-info {
    margin-top: 30px;
    background-color: #003366; /* ³²»ö ¹è°æ */
    color: #ffffff; /* Èò»ö ±Û¾¾ */
    padding: 20px;
    border-radius: 5px;
}


.contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
}


.contact-info p {
    font-size: 14px;
    margin-bottom: 10px;
}


.main-content {
    flex: 1;
}


.main-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000000;
}


.main-content h3 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 20px;
    padding-bottom: 10px;
}




.content-divider {
    height: 1px;
    background-color: #ddd;
    margin-bottom: 20px;
}




/*ºê·¹µåÅ©·³*/
.breadcrumb {
    text-align: right;
    margin-bottom: -20px;
    font-size: 14px;
    font-weight: 400;
}


.breadcrumb a {
    color: rgb(71, 70, 70);
    text-decoration: none;
    opacity:0.8;
}


.breadcrumb a:hover {
    text-decoration: underline;
}


.breadcrumb span {
    color: rgb(60, 59, 59);
}