:root {
    --fbi-navy: #0B1F3F;
    --fbi-navy-light: #1a3a5c;
    --fbi-gold: #D4A547;
    --fbi-gold-light: #e4c077;
    --fbi-red: #C41E3A;
    --fbi-red-dark: #a01830;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-50);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.header-top {
    background: var(--fbi-navy);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-notice {
    opacity: 0.9;
}

.header-links a {
    color: var(--white);
    margin-left: 20px;
    opacity: 0.9;
    transition: var(--transition);
}

.header-links a:hover {
    opacity: 1;
    color: var(--fbi-gold);
}

.main-nav {
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-seal {
    width: 50px;
    height: 50px;
    background: var(--fbi-navy);
    color: var(--fbi-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    border: 3px solid var(--fbi-gold);
}

.logo-seal.large {
    width: 80px;
    height: 80px;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    color: var(--fbi-navy);
    font-size: 18px;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--gray-500);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--fbi-navy);
    border-bottom-color: var(--fbi-gold);
}

.btn-tip {
    background: var(--fbi-red);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius);
    border: none !important;
}

.btn-tip:hover {
    background: var(--fbi-red-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--fbi-navy);
    border-radius: 2px;
    transition: var(--transition);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--fbi-navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--fbi-navy-light);
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-300);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--fbi-navy);
    color: var(--fbi-navy);
}

.btn-outline:hover {
    background: var(--fbi-navy);
    color: var(--white);
}

.btn-danger {
    background: var(--fbi-red);
    color: var(--white);
}

.btn-danger:hover {
    background: var(--fbi-red-dark);
}

.btn-link {
    background: none;
    color: var(--fbi-navy);
    padding: 0;
}

.btn-link:hover {
    color: var(--fbi-gold);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-block {
    width: 100%;
}

.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin: 20px 0;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.alert ul {
    margin-left: 20px;
    margin-top: 8px;
}

.hero {
    background: linear-gradient(135deg, var(--fbi-navy) 0%, var(--fbi-navy-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
}

.hero-slide {
    display: none;
    min-height: 500px;
}

.hero-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    padding: 100px 0;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-prev,
.hero-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255,255,255,0.3);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--fbi-gold);
}

.page-hero {
    background: linear-gradient(135deg, var(--fbi-navy) 0%, var(--fbi-navy-light) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.statistics {
    background: var(--white);
    padding: 60px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius) var(--radius) 0 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--fbi-navy);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--fbi-navy);
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.priorities {
    padding: 80px 0;
}

.priorities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.priority-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--fbi-gold);
    transition: var(--transition);
}

.priority-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.priority-card h3 {
    color: var(--fbi-navy);
    margin-bottom: 15px;
    font-size: 20px;
}

.priority-card p {
    color: var(--gray-600);
    margin-bottom: 15px;
}

.featured-wanted,
.latest-news {
    padding: 80px 0;
    background: var(--white);
}

.wanted-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wanted-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.wanted-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.wanted-image {
    position: relative;
    height: 200px;
    background: var(--gray-200);
}

.wanted-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wanted-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-300);
    color: var(--gray-600);
    font-size: 14px;
}

.wanted-placeholder.large {
    height: 300px;
}

.danger-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--fbi-red);
    color: var(--white);
    padding: 5px 10px;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.wanted-info {
    padding: 20px;
}

.wanted-info h3 {
    color: var(--fbi-navy);
    margin-bottom: 5px;
}

.wanted-info .alias {
    font-style: italic;
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 10px;
}

.wanted-info .charges {
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 10px;
}

.wanted-info .reward {
    color: var(--fbi-gold);
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 180px;
    background: var(--gray-200);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-category {
    display: inline-block;
    background: var(--fbi-navy);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-content h3 {
    margin-bottom: 10px;
}

.news-content h3 a {
    color: var(--fbi-navy);
    transition: var(--transition);
}

.news-content h3 a:hover {
    color: var(--fbi-gold);
}

.news-content p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 15px;
}

.news-meta {
    font-size: 12px;
    color: var(--gray-500);
}

.cta-section {
    background: var(--fbi-gold);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--fbi-navy);
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--fbi-navy);
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 18px;
}

.main-footer {
    background: var(--fbi-navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo .logo-seal {
    width: 40px;
    height: 40px;
    font-size: 12px;
}

.footer-logo .logo-title {
    color: var(--white);
    font-size: 16px;
}

.footer-description {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.7;
}

.footer-section h4 {
    color: var(--fbi-gold);
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    opacity: 0.8;
    font-size: 14px;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--fbi-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom .disclaimer {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.6;
}

.wanted-section,
.news-section,
.careers-section,
.tip-section {
    padding: 60px 0;
}

.wanted-filters,
.news-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.search-input,
.filter-select {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition);
}

.search-input {
    flex: 1;
    max-width: 400px;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--fbi-navy);
    box-shadow: 0 0 0 3px rgba(11, 31, 63, 0.1);
}

.wanted-detail-card {
    display: flex;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    padding: 30px;
}

.wanted-detail-image {
    width: 300px;
    flex-shrink: 0;
    position: relative;
}

.wanted-detail-image img {
    width: 100%;
    border-radius: var(--radius);
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.at-large { background: var(--fbi-red); color: var(--white); }
.status-badge.captured { background: #10b981; color: var(--white); }
.status-badge.new { background: #3b82f6; color: var(--white); }
.status-badge.under-review { background: var(--fbi-gold); color: var(--fbi-navy); }
.status-badge.investigating { background: #8b5cf6; color: var(--white); }
.status-badge.closed { background: var(--gray-500); color: var(--white); }
.status-badge.published { background: #10b981; color: var(--white); }
.status-badge.draft { background: var(--gray-400); color: var(--white); }

.wanted-detail-info h2 {
    color: var(--fbi-navy);
    font-size: 28px;
    margin-bottom: 5px;
}

.wanted-detail-info .alias {
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 15px;
}

.wanted-danger {
    margin-bottom: 20px;
}

.danger-level {
    display: inline-block;
    background: var(--fbi-red);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
}

.wanted-charges h4,
.wanted-description h4 {
    color: var(--fbi-navy);
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
}

.wanted-charges,
.wanted-description {
    margin-bottom: 20px;
}

.wanted-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item {
    background: var(--gray-50);
    padding: 12px;
    border-radius: var(--radius);
}

.detail-item .label {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.detail-item .value {
    font-weight: 600;
    color: var(--fbi-navy);
}

.wanted-reward {
    background: var(--fbi-gold);
    padding: 15px 20px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reward-label {
    color: var(--fbi-navy);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

.reward-amount {
    color: var(--fbi-navy);
    font-size: 24px;
    font-weight: 800;
}

.news-list-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
}

.news-list-image {
    width: 250px;
    flex-shrink: 0;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list-content {
    padding: 25px;
    flex: 1;
}

.news-list-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.news-list-meta .category {
    background: var(--fbi-navy);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-list-meta .date {
    color: var(--gray-500);
    font-size: 13px;
}

.news-list-content h2 {
    margin-bottom: 10px;
    font-size: 22px;
}

.news-list-content h2 a {
    color: var(--fbi-navy);
    transition: var(--transition);
}

.news-list-content h2 a:hover {
    color: var(--fbi-gold);
}

.news-list-content p {
    color: var(--gray-600);
    margin-bottom: 15px;
}

.news-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-list-footer .author {
    color: var(--gray-500);
    font-size: 13px;
}

.read-more {
    color: var(--fbi-navy);
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--fbi-gold);
}

.single-article {
    padding: 60px 0;
    background: var(--white);
}

.article-header {
    max-width: 800px;
    margin: 0 auto 30px;
}

.back-link {
    display: inline-block;
    color: var(--fbi-navy);
    margin-bottom: 20px;
    font-weight: 500;
}

.back-link:hover {
    color: var(--fbi-gold);
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 36px;
    color: var(--fbi-navy);
    margin-bottom: 10px;
}

.article-author {
    color: var(--gray-500);
}

.article-image {
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: var(--radius);
    overflow: hidden;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-700);
}

.article-footer {
    max-width: 800px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.share-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.share-btn {
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--gray-700);
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--fbi-navy);
    color: var(--white);
}

.careers-intro {
    padding: 60px 0;
    background: var(--white);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.intro-content h2 {
    color: var(--fbi-navy);
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.benefit-icon {
    font-size: 40px;
    color: var(--fbi-gold);
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--fbi-navy);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 14px;
}

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

.career-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.career-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.career-title-section h3 {
    color: var(--fbi-navy);
    font-size: 20px;
    margin-bottom: 5px;
}

.career-title-section .department {
    color: var(--gray-500);
    font-size: 14px;
}

.career-meta {
    display: flex;
    gap: 10px;
}

.career-meta span {
    background: var(--gray-200);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--gray-700);
}

.career-body {
    padding: 25px;
}

.career-body .description {
    margin-bottom: 20px;
    color: var(--gray-700);
}

.career-body .salary {
    margin-bottom: 20px;
    color: var(--fbi-gold);
    font-size: 18px;
}

.career-body h4 {
    color: var(--fbi-navy);
    font-size: 14px;
    margin-bottom: 8px;
}

.career-body .requirements,
.career-body .job-benefits {
    margin-bottom: 15px;
}

.career-body .requirements p,
.career-body .job-benefits p {
    color: var(--gray-600);
    font-size: 14px;
}

.career-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.career-footer .posted {
    color: var(--gray-500);
    font-size: 13px;
}

.about-mission {
    padding: 80px 0;
    background: var(--white);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement {
    font-size: 28px;
    font-weight: 700;
    color: var(--fbi-navy);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-values {
    padding: 80px 0;
    background: var(--gray-50);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--fbi-navy);
    color: var(--fbi-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.value-card h3 {
    color: var(--fbi-navy);
    margin-bottom: 15px;
    font-size: 22px;
}

.value-card p {
    color: var(--gray-600);
}

.about-history {
    padding: 80px 0;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
}

.history-content h2 {
    text-align: center;
    color: var(--fbi-navy);
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--fbi-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--fbi-gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.timeline-item .year {
    display: inline-block;
    background: var(--fbi-navy);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius);
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content h4 {
    color: var(--fbi-navy);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray-600);
}

.about-leadership {
    padding: 80px 0;
    background: var(--white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.leader-card {
    text-align: center;
    padding: 30px;
}

.leader-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--gray-200);
}

.leader-photo.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-card h3 {
    color: var(--fbi-navy);
    margin-bottom: 10px;
}

.leader-card p {
    color: var(--gray-600);
    font-size: 14px;
}

.about-structure {
    padding: 80px 0;
    background: var(--gray-50);
}

.structure-content {
    max-width: 1000px;
    margin: 0 auto;
}

.structure-content > p {
    text-align: center;
    margin-bottom: 40px;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.structure-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.structure-item h4 {
    color: var(--fbi-navy);
    margin-bottom: 10px;
}

.structure-item p {
    color: var(--gray-600);
    font-size: 14px;
}

.tip-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.tip-info h2 {
    color: var(--fbi-navy);
    margin-bottom: 15px;
}

.tip-info ul {
    margin-left: 20px;
    margin-bottom: 30px;
}

.tip-info ul li {
    margin-bottom: 8px;
    color: var(--gray-700);
}

.tip-notice {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--fbi-gold);
    margin-bottom: 30px;
}

.tip-notice h3 {
    color: var(--fbi-navy);
    margin-bottom: 10px;
    font-size: 16px;
}

.tip-notice p {
    font-size: 14px;
    margin-bottom: 8px;
}

.tip-contact h3 {
    color: var(--fbi-navy);
    margin-bottom: 10px;
    font-size: 16px;
}

.tip-contact p {
    font-size: 14px;
    margin-bottom: 5px;
}

.tip-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.success-message {
    text-align: center;
    padding: 40px;
}

.success-message h2 {
    color: var(--fbi-navy);
    margin-bottom: 15px;
}

.success-message p {
    margin-bottom: 25px;
}

.tip-form .form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group .required {
    color: var(--fbi-red);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fbi-navy);
    box-shadow: 0 0 0 3px rgba(11, 31, 63, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--gray-500);
    font-size: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.form-actions {
    margin-top: 25px;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fbi-navy) 0%, var(--fbi-navy-light) 100%);
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    color: var(--fbi-navy);
    margin-top: 20px;
    margin-bottom: 5px;
}

.login-header p {
    color: var(--gray-500);
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.login-footer a {
    color: var(--fbi-navy);
    font-weight: 500;
}

.admin-page {
    min-height: 100vh;
    background: var(--gray-100);
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--fbi-navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-header .logo-seal {
    width: 40px;
    height: 40px;
    font-size: 12px;
}

.sidebar-header span {
    font-weight: 600;
}

.sidebar-nav {
    padding: 20px 0;
    flex: 1;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.sidebar-nav a.active {
    border-left: 3px solid var(--fbi-gold);
}

.sidebar-nav .icon {
    font-size: 16px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 10px;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h1 {
    color: var(--fbi-navy);
    font-size: 28px;
}

.admin-user {
    color: var(--gray-600);
}

.admin-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.admin-stat {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon.news { background: #dbeafe; color: #2563eb; }
.stat-icon.wanted { background: #fee2e2; color: #dc2626; }
.stat-icon.careers { background: #fef3c7; color: #d97706; }
.stat-icon.tips { background: #d1fae5; color: #059669; }

.stat-info {
    flex: 1;
}

.stat-link {
    color: var(--fbi-navy);
    font-size: 13px;
    font-weight: 500;
}

.dashboard-section {
    margin-bottom: 30px;
}

.dashboard-section h2 {
    color: var(--fbi-navy);
    margin-bottom: 20px;
    font-size: 20px;
}

.quick-actions {
    display: flex;
    gap: 15px;
}

.admin-actions {
    margin-bottom: 20px;
}

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

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.admin-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 13px;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--gray-700);
}

.admin-table .actions {
    display: flex;
    gap: 8px;
}

.admin-form-container {
    max-width: 800px;
}

.admin-form-container h2 {
    color: var(--fbi-navy);
    margin-bottom: 25px;
}

.admin-form .form-group {
    margin-bottom: 20px;
}

.admin-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.admin-form .current-image {
    margin-bottom: 10px;
}

.admin-form .current-image img {
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.tip-detail {
    max-width: 800px;
}

.tip-detail .tip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tip-detail .tip-header h2 {
    color: var(--fbi-navy);
}

.tip-detail .tip-meta {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.tip-detail .tip-meta p {
    margin-bottom: 8px;
}

.tip-detail .tip-content {
    margin-bottom: 30px;
}

.tip-detail .tip-content h3 {
    color: var(--fbi-navy);
    margin-bottom: 10px;
}

.tip-detail .tip-actions .status-form {
    display: flex;
    gap: 15px;
    align-items: center;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .stats-grid,
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .priorities-grid,
    .wanted-grid,
    .news-grid,
    .values-grid,
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .stats-grid,
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .priorities-grid,
    .wanted-grid,
    .news-grid,
    .values-grid,
    .leadership-grid,
    .benefits-grid,
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .wanted-detail-card {
        flex-direction: column;
    }
    
    .wanted-detail-image {
        width: 100%;
    }
    
    .wanted-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-list-item {
        flex-direction: column;
    }
    
    .news-list-image {
        width: 100%;
        height: 200px;
    }
    
    .tip-content {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        width: 100%;
        position: relative;
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .admin-layout {
        flex-direction: column;
    }
    
    .wanted-filters,
    .news-filters {
        flex-direction: column;
    }
    
    .search-input {
        max-width: 100%;
    }
}
