.block-1 {
    width: 100%;
    height: 370px;
    background-image: url('/static/pc/assets/img/block_1_bg.jpg');
    background-size: cover;
    background-color: var(--bg-color);
    background-position: bottom;
}
.block-1-content {
    margin-top: 25px;
    width: 100%;
    height: 100%;
    display: flex;
}
.carousel-section {
    width: 50%;
    height: 330px;
}
.carousel-swiper {
    width: 100%;
    height: 100%;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 70px;
    font-size: 11px;
    text-align: left;
    z-index: 1;
}
.carousel-pagination {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: white;
    z-index: 2;
    display: flex;
    gap: 5px;
}
.carousel-pagination-bullet {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
    opacity: 1;
}
.carousel-pagination-bullet-active {
    opacity: 0.7;
}

.news-section {
    width: 50%;
    padding-left: 20px;
}
.news-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.tab-button {
    padding: 10px 15px;
    margin-right: 5px;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    color: #7a7a7a;
}
.tab-button.active {
    border-bottom: 2px solid var(--accent-color);
    color: #1a1a1a;
}
.news-list {
    list-style: none;
    padding: 0;
    height: 300px;
}
.news-list a {
    text-decoration: none;
    cursor: pointer;
}
.news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}
.news-title {
    flex: 1;
    margin-right: 10px;
    color: #121212;
}
.news-date {
    color: #787878;
}

.block-2 {
    width: 100%;
    height: 300px;
    background-image: url("/static/pc/assets/img/block_2_bg.jpg");
    background-size: cover;
    background-color: var(--bg-color);
    background-position: center;
}
.block-2-content {
    margin-top: 5px;
    width: 100%;
    height: 100%;
    display: flex;
}
.block-2-left {
    width: 50%;
    height: 100%;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 5px;
}
.section-header .view-more {
    color: #666;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.section-header .view-more img {
    width: 16px;
    margin-left: 5px;
}
.go-culture {
    width: 100%;
}
.go-culture-list {
    background-color: #e6eff5;
    list-style: none;
    padding: 0 20px;
    height: 170px;
    font-size: 12px;
}
.go-culture-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}
.go-culture-list li:last-child {
    border-bottom: none;
}
.go-culture-list li a {
    text-decoration: none;
    color: #121212;
    display: flex;
    justify-content: space-between;
}
.go-culture-list .title {
    font-size: 0.9rem;
}
.go-culture-list .date {
    font-size: 12px;
    color: #666;
}
.block-2-right {
    width: 50%;
    padding-left: 20px;
}
.go-events {
    width: 100%;
}
.event-item {
    background-color: #f5ede6;
    padding: 0 20px;
    height: 170px;
    margin-top: -3px;
}
.event-item.new-event {
    position: relative;
}
.event-item.new-event .new-tag {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 47px;
    height: 47px;
}
.event-item h3 {
    font-size: 16px;
    padding-top: 25px;
    margin-bottom: 10px;
}
.event-details {
    list-style: none;
    padding: 0;
}
.event-details li {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.block-3 {
    width: 100%;
    height: 350px;
    background-image: url("/static/pc/assets/img/block_3_bg.jpg");
    background-size: cover;
    background-color: var(--bg-color);
    background-position: center;
}
.block-3-content {
    width: 100%;
    height: 100%;
    display: flex;
}
.training-institutions {
    width: 100%;
}
.institution-grid {
    display: flex;
    gap: 20px;
}
.institution-item {
    flex: 1;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.institution-item img {
    width: 100%;
    height: 207px;
    object-fit: cover;
}
.institution-item .caption {
    padding: 10px 0;
    background-color: white;
    font-size: 1rem;
    color: #333;
}

.block-4 {
    width: 100%;
    height: 100px;
    background-image: url("/static/pc/assets/img/block_4_bg.jpg");
    background-size: cover;
    background-color: var(--bg-color);
}
.block-4-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.block-4-content .title {
    font-size: 16px;
    font-weight: bold;
    margin-right: 30px;
}
.block-4-content .links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}
.block-4-content .links li {
    margin: 0 15px;
}
.block-4-content .links li:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    color: #666;
}
.block-4-content .links a {
    text-decoration: none;
    color: #333;
}
.block-4-content .links a:hover,
.block-4-content .links a:focus {
    text-decoration: underline;
    color: var(--accent-color);
}

/* Mobile styles */
@media (max-width: 700px) {
    .block-4 {
        display: none;
    }
}