

.faq-section {
    padding: 60px 0;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.category-btn {
    background: var(--white);
    border: 2px solid #e9ecef;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.faq-list {
    display: none;
}

.faq-list.active {
    display: block;
}

.faq-item {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-light);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 30px 25px 85px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.faq-answer-content ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.faq-answer-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-answer-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.contact-banner h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-banner p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-method i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .faq-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .category-btn i {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .faq-question-text {
        font-size: 15px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 55px;
        font-size: 14px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }
}



.notice-page {
    padding-top: 160px;
    padding-bottom: 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-header p {
    font-size: 16px;
    color: var(--text-light);
}

.notice-container {
    max-width: 1000px;
    margin: 0 auto;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.notice-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notice-info p {
    font-size: 15px;
    color: var(--text-light);
}

.notice-info strong {
    color: var(--primary-color);
    font-size: 18px;
}

.notice-search {
    display: flex;
    gap: 10px;
}

.search-input {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    width: 200px;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-search {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-search:hover {
    background: #0a3a63;
}

.notice-list {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.notice-table {
    width: 100%;
    border-collapse: collapse;
}

.notice-table thead {
    background: var(--bg-light);
}

.notice-table th {
    padding: 18px 20px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid #e0e0e0;
}

.notice-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
    cursor: pointer;
}

.notice-table tbody tr:hover {
    background: #f8f9fa;
}

.notice-table td {
    padding: 20px;
    text-align: center;
    color: var(--text-dark);
}

.notice-table td.notice-title {
    text-align: left;
}

.notice-important {
    background: #fff3e0 !important;
}

.notice-important:hover {
    background: #ffe0b2 !important;
}

 

.badge-new {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 8px;
    background: #e74c3c;
    color: white;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.notice-title a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.notice-title a:hover {
    color: var(--primary-color);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: white;
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

 

.page-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-num {
    list-style: none;
}
.page-num a {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: white;
    display: block;
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .notice-page {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .notice-header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .notice-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .notice-search {
        width: 100%;
    }
    
    .search-input {
        flex: 1;
    }
    
    .notice-table {
        font-size: 14px;
    }
    
    .notice-table th,
    .notice-table td {
        padding: 12px 10px;
    }
    
    .notice-table th:first-child,
    .notice-table td:first-child {
        display: none;
    }
    
    .notice-table th:last-child,
    .notice-table td:last-child {
        display: none;
    }
}


.notice-detail-page {
    padding: 150px 0 100px;
    background: var(--bg-light);
    min-height: 100vh;
}

.detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.detail-header {
    background: white;
    padding: 40px;
    border-radius: 15px 15px 0 0;
    box-shadow: var(--shadow-sm);
}

.badge-notice {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.4;
}

.detail-meta {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: var(--text-light);
    font-size: 14px;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-meta i {
    color: var(--primary-color);
}

.detail-content {
    background: white;
    padding: 50px 40px;
    border-radius: 0 0 15px 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.content-body {
    line-height: 2;
    color: var(--text-dark);
    font-size: 16px;
}

/* .content-body p {
    margin-bottom: 25px;
} */

/* .content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
}

.content-body h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.content-body ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-body ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: var(--text-dark);
} */

.detail-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-action {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.btn-list {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-list:hover {
    background: #0a3a63;
    border-color: #0a3a63;
}

.detail-navigation {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.nav-item {
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
    cursor: pointer;
}

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

.nav-item:hover {
    background: var(--bg-light);
}

.nav-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-right: 15px;
    min-width: 60px;
}

.nav-title {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-title:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .notice-detail-page {
        padding: 120px 0 60px;
    }
    
    .detail-container {
        padding: 0 15px;
    }
    
    .detail-header {
        padding: 25px 20px;
    }
    
    .detail-title {
        font-size: 22px;
    }
    
    .detail-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .detail-content {
        padding: 30px 20px;
    }
    
    .content-body {
        font-size: 15px;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .btn-action {
        width: 100%;
    }
    
    .nav-item {
        padding: 15px 20px;
    }
    
    .nav-label {
        display: block;
        margin-bottom: 5px;
    }
}