.rti-section4-page {
    background: #f8f9fa;
}

/* Hide original header elements */
.hero-section, .ultra-minimal-header {
    display: none !important;
}

.breadcrumb-container {
    display: none !important;
}

.rti-info-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #1e3c72;
}

.rti-info-box h2 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.rti-documents {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid rgba(30, 60, 114, 0.1);
}

.rti-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: rti-counter;
}

.rti-item {
    border-bottom: 1px solid #eee;
    counter-increment: rti-counter;
    position: relative;
}

.rti-item:last-child {
    border-bottom: none;
}

.rti-item::before {
    content: counter(rti-counter, decimal-leading-zero);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: #1e3c72;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(30, 60, 114, 0.3);
    transition: all 0.3s ease;
}

.rti-link,
.rti-text {
    display: flex;
    align-items: center;
    padding: 1.3rem 1rem 1.3rem 4.5rem;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    gap: 1rem;
    font-weight: 500;
    position: relative;
}

.rti-link:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    color: #1e3c72;
    text-decoration: none;
    padding-left: 5rem;
}

.rti-item.has-file .rti-link {
    cursor: pointer;
}

.rti-item.has-file .rti-link:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.15);
}

.rti-item:hover::before {
    background: #2a5298;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.4);
}

.rti-item.no-file .rti-text {
    color: #666;
    cursor: default;
}

.download-icon {
    margin-left: auto;
    opacity: 1;
    transition: all 0.3s ease;
    color: #1e3c72;
    font-size: 1.1rem;
}

.rti-link:hover .download-icon {
    opacity: 1;
    transform: scale(1.2);
    color: #2a5298;
}

.fa-file-pdf {
    color: #e53e3e;
}

.fa-circle-info {
    color: #718096;
}

.rti-sidebar {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 2rem;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    color: #1e3c72;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1e3c72;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 0.5rem;
}

.sidebar-links a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.sidebar-links a:hover {
    color: #1e3c72;
    text-decoration: none;
}

.info-box {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid #1e3c72;
}

.admin-controls {
    padding: 1.5rem;
    text-align: center;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.additional-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1.main-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .page-header h1.main-title .subtitle {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .rti-info-box,
    .rti-documents {
        margin-bottom: 1rem;
    }
    
    .rti-link,
    .rti-text {
        padding: 1rem 0.8rem 1rem 3rem;
        font-size: 0.9rem;
    }
    
    .rti-item::before {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
        left: 0.8rem;
    }
    
    .rti-sidebar {
        margin-top: 2rem;
        position: static;
    }
}
