.info-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 60px 0;
}

.chapter-links {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.chapter-links h3 {
    color: #0088cc;
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 24px;
}

.chapter-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.chapter-link:hover {
    background: #e9ecef;
    border-left-color: #0088cc;
    color: #0088cc;
    transform: translateX(5px);
}

.chapter-link i {
    font-size: 24px;
    margin-right: 15px;
    color: #0088cc;
}

.chapter-link span {
    font-size: 16px;
    font-weight: 500;
}

.info-box {
    background: linear-gradient(135deg, #0088cc 0%, #005a8a 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(0,136,204,0.3);
}

.info-box h4 {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 20px;
}

.info-box p {
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
}

.banners-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.banner-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .banners-column {
        margin-top: 30px;
    }
}
