* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header & Navigation */
header {
    background-color: #001a4d;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo:hover {
    opacity: 0.9;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: bold;
    color: #001a4d;
    font-size: 0.9rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-text p {
    font-size: 0.8rem;
    opacity: 0.8;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    cursor: pointer;
}

nav a:hover {
    color: #ffd700;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
    color: white;
    padding: 4rem 20px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #003d99 0%, #001a4d 100%);
    color: white;
    padding: 3rem 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Search Section */
.search-section {
    max-width: 1200px;
    margin: -3rem auto 3rem;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.search-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.search-box h3 {
    color: #001a4d;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-form input:focus {
    outline: none;
    border-color: #001a4d;
    box-shadow: 0 0 5px rgba(0,26,77,0.3);
}

.search-form button {
    background-color: #ffd700;
    color: #001a4d;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.search-form button:hover {
    background-color: #ffed4e;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-content {
    padding: 3rem 20px;
}

/* Section Title */
.section-title {
    color: #001a4d;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: #001a4d;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
    text-align: center;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #001a4d;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.stat {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-big {
    font-size: 2rem;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Featured Investigations */
.featured-section {
    padding: 3rem 0;
}

.investigations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.investigation-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.investigation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-header {
    background-color: #003d99;
    color: white;
    padding: 1.5rem;
}

.card-header h4 {
    margin-bottom: 0.5rem;
}

.case-status {
    display: inline-block;
    background-color: #ffd700;
    color: #001a4d;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

.card-body p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.case-id {
    color: #001a4d;
    font-weight: 600;
    font-size: 0.85rem;
}

.view-btn {
    color: #001a4d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    cursor: pointer;
}

.view-btn:hover {
    color: #ffd700;
}

/* Alerts Section */
.alerts-section {
    padding: 3rem 0;
}

.alerts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.alert-card {
    padding: 1.5rem;
    border-radius: 8px;
    color: white;
}

.alert-danger {
    background-color: #d32f2f;
}

.alert-warning {
    background-color: #f57c00;
}

.alert-info {
    background-color: #0288d1;
}

.alert-card h4 {
    margin-bottom: 0.5rem;
}

.alert-card small {
    opacity: 0.8;
}

/* Quick Links */
.quick-links {
    background-color: #001a4d;
    color: white;
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 8px;
}

.quick-links .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.quick-link {
    padding: 1.5rem;
    transition: transform 0.3s;
    cursor: pointer;
}

.quick-link:hover {
    transform: scale(1.05);
}

.quick-link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quick-link h4 {
    margin-bottom: 0.5rem;
}

.quick-link a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.quick-link a:hover {
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 2rem;
    border: 1px solid #888;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #001a4d;
}

.modal-header {
    color: #001a4d;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 1rem;
}

.modal-body {
    color: #333;
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn-primary {
    background-color: #ffd700;
    color: #001a4d;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #ffed4e;
}

.btn-secondary {
    background-color: #003d99;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #001a4d;
}

.btn-small {
    background-color: #ffd700;
    color: #001a4d;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-small:hover {
    background-color: #ffed4e;
}

/* Footer */
footer {
    background-color: #001a4d;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 3px solid #ffd700;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    padding-top: 2rem;
    border-top: 1px solid #003d99;
    margin-top: 2rem;
}

/* About Page */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.value-card h3 {
    color: #001a4d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Organization Chart */
.org-chart {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.org-box {
    background-color: #003d99;
    color: white;
    padding: 1rem;
    border-radius: 4px;
    min-width: 150px;
    text-align: center;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 3px solid #ffd700;
}

.timeline-date {
    font-weight: bold;
    color: #ffd700;
    font-size: 1.2rem;
}

.timeline-content {
    margin-top: 0.5rem;
}

.timeline-content h4 {
    color: #001a4d;
    margin-bottom: 0.5rem;
}

/* Leadership */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.leadership-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.leadership-photo {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.leadership-card h3 {
    color: #001a4d;
    margin-bottom: 0.5rem;
}

.title {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Investigations Page */
.filter-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.filter-section h2 {
    color: #001a4d;
    margin-bottom: 1rem;
}

.filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-controls input,
.filter-controls select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.filter-controls select:focus,
.filter-controls input:focus {
    outline: none;
    border-color: #001a4d;
    box-shadow: 0 0 5px rgba(0,26,77,0.3);
}

.cases-section {
    margin-bottom: 3rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-header {
    background-color: #003d99;
    color: white;
    padding: 1.5rem;
}

.case-header h3 {
    margin-bottom: 0.5rem;
}

.case-body {
    padding: 1.5rem;
}

.case-body p {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Most Wanted */
.most-wanted-section {
    padding: 3rem 0;
}

.wanted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.wanted-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    border-left: 4px solid #d32f2f;
}

.wanted-photo {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.wanted-card h3 {
    color: #001a4d;
    margin-bottom: 0.5rem;
}

.wanted-charge {
    color: #d32f2f;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wanted-status {
    background-color: #f5f5f5;
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Crime Types */
.crime-types-section {
    padding: 3rem 0;
    background: white;
    border-radius: 8px;
    margin-top: 2rem;
}

.crime-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.crime-type-card {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.crime-type-card h3 {
    color: #001a4d;
    margin-bottom: 1rem;
}

/* News Page */
.featured-news {
    margin-bottom: 3rem;
}

.featured-article {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 2rem;
}

.featured-image {
    font-size: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.featured-content h3 {
    color: #001a4d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-section {
    margin-top: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-3px);
}

.news-card h3 {
    color: #001a4d;
    margin-bottom: 0.5rem;
}

.read-more {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: opacity 0.3s;
}

.read-more:hover {
    opacity: 0.8;
}

/* Press Resources */
.press-resources {
    padding: 3rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.resource-card h3 {
    color: #001a4d;
    margin-bottom: 1rem;
}

/* Subscribe */
.subscribe-section {
    background: #003d99;
    color: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.subscribe-section h2 {
    margin-bottom: 1rem;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 1.5rem auto 0;
}

.subscribe-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
}

.subscribe-form button {
    background-color: #ffd700;
    color: #001a4d;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-form button:hover {
    background-color: #ffed4e;
}

/* Careers Page */
.career-paths {
    padding: 3rem 0;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.path-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.path-card h3 {
    color: #001a4d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.path-card ul {
    list-style: none;
    margin-top: 1rem;
}

.path-card ul li {
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.9rem;
}

/* Application Process */
.application-process {
    padding: 3rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    font-size: 2.5rem;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    color: #001a4d;
    margin-bottom: 0.5rem;
}

/* Benefits */
.benefits-section {
    padding: 3rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    color: #01143a;
    margin-bottom: 1rem;
}

/* Jobs Table */
.current-openings {
    padding: 3rem 0;
}

.jobs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.jobs-table thead {
    background-color: #001a4d;
    color: white;
}

.jobs-table th,
.jobs-table td {
    padding: 1rem;
    text-align: left;
}

.jobs-table tbody tr {
    border-bottom: 1px solid #eee;
}

.jobs-table tbody tr:hover {
    background-color: #f5f5f5;
}

.status-open {
    background-color: #4caf50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.status-closing {
    background-color: #ff9800;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Testimonials */
.testimonials {
    padding: 3rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #ffd700;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
}

.testimonial-author {
    color: #001a4d;
    font-weight: 600;
}

/* Contact Page */
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-option {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-option h3 {
    color: #001a4d;
    margin-bottom: 1rem;
}

.contact-value {
    font-weight: 600;
    color: #ffd700;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.contact-description {
    font-size: 0.9rem;
    color: #999;
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.contact-form-section h2 {
    color: #001a4d;
    margin-bottom: 1.5rem;
}

.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #001a4d;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #001a4d;
    box-shadow: 0 0 5px rgba(0,26,77,0.3);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

/* Regional Offices */
.regional-offices {
    padding: 3rem 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.office-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 3px solid #ffd700;
}

.office-card h3 {
    color: #001a4d;
    margin-bottom: 0.5rem;
}

.office-phone {
    color: #ffd700;
    font-weight: 600;
    margin-top: 1rem;
}

/* FAQ */
.faq-section {
    padding: 3rem 0;
}

.faq-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #001a4d;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-item h3:hover {
    color: #ffd700;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #001a4d;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        border-radius: 0;
        width: 100%;
        text-align: center;
    }

    nav ul.active {
        display: flex;
    }

    nav a {
        display: block;
        padding: 0.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .search-form {
        flex-direction: column;
    }

    .investigations-grid,
    .news-grid,
    .paths-grid,
    .cases-grid,
    .wanted-grid,
    .crime-types-grid,
    .benefits-grid,
    .resources-grid,
    .offices-grid,
    .stats-section,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 200px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .org-level {
        flex-direction: column;
    }

    .filter-controls {
        grid-template-columns: 1fr;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .jobs-table {
        font-size: 0.9rem;
    }

    .jobs-table th,
    .jobs-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    nav {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .search-form {
        gap: 0.25rem;
    }

    .search-form button {
        padding: 0.75rem 1rem;
    }
}