/* Banner styles */
#page-title {
    background-size: cover;
    background-position: center;
}

.text-banner {
    font-size: 24px;
    font-weight: 700;
    position: absolute;
    padding-left: 20px;
}

.text-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background-color: #264596;
}

.max-width-1400 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Breadcrumb styles */
.breadcrumb-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb-text strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Main content styles */
.program-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.program-content p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Search section styles */
.search-section {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
}

.search-wrapper {
    display: flex;
    align-items: center;
}

.search-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 8px 0 0 8px;
    padding: 12px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #264596;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.btn-search {
    background: #264596;
    color: white;
    border: none;
    padding: 13px 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
}

.btn-search:hover {
    background: #264596;
    color: #fff;
}

.btn-search i {
    margin-right: 5px;
}

/* Support programs title */
.support-programs {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: left;
    padding: 10px 0;
}

/* Documents list styles */
.documents-list {
    margin-bottom: 30px;
}

.document-item {
    background: #f2f5ff;
    border: 1px solid #f2f5ff;
    border-radius: 20px;
    margin-bottom: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.document-item:hover {
    border-color: #264596;
}

.document-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.file-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.document-content {
    flex: 1;
}

.document-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.document-title a {
    color: #264596;
    text-decoration: none;
    transition: color 0.3s ease;
}

.document-title a:hover {
    color: #3498db;
}

.document-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.document-date {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.document-date i {
    color: #3498db;
}

/* Pagination styles */
.pagination-section {
    margin-top: 30px;
    text-align: center;
}

.pagination-section .pagination {
    justify-content: center;
}

.pagination-section .page-link {
    color: #264596;
    border-color: #ddd;
    padding: 8px 16px;
}

.pagination-section .page-link:hover {
    color: #fff;
    background-color: #3498db;
    border-color: #3498db;
}

.pagination-section .page-item.active .page-link {
    background-color: #3498db;
    border-color: #3498db;
}

/* Feedback form */
.feedback-title {
    font-weight: 600;
    color: #264596;
    margin-bottom: 8px;
}

.feedback-card {
    background: #f5f7ff;
    border-radius: 12px;
    border: 1px solid #e9edf7;
    padding: 16px;
    margin-bottom: 30px;
}

.feedback-card .form-group label {
    font-weight: 600;
}

.feedback-card .btn-primary {
    background: #264596;
    border-color: #264596;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 0px;
}

.feedback-card .btn-primary:hover {
    background: #1f3a7e;
    border-color: #1f3a7e;
}

.feedback-title {
    color: #1f3a7e;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .max-width-1400 {
        padding: 0 10px;
    }
    
    .text-banner {
        font-size: 2rem;
    }
    
    .document-item {
        padding: 15px;
        gap: 10px;
    }
    
    .document-icon {
        width: 50px;
        height: 50px;
    }
    
    .document-title {
        font-size: 15px;
    }
    
    .search-section .col-md-8,
    .search-section .col-md-4 {
        margin-bottom: 10px;
    }
}