/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
    font-weight: 500;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid white;
    outline-offset: 2px;
}

:root {
    --primary-color: #dc2626;
    --primary-hover: #b91c1c;
    --secondary-color: #1f2937;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --text-light: #4b5563;
    --text-lighter: #9ca3af;
    --background-color: #ffffff;
    --background-light: #f9fafb;
    --background-dark: #f3f4f6;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #b91c1c;
}

/* Header and Navigation */
.header {
    background-color: var(--background-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    background: linear-gradient(135deg,
                rgba(220, 38, 38, 0.85) 0%,
                rgba(239, 68, 68, 0.7) 25%,
                rgba(185, 28, 28, 0.8) 50%,
                rgba(153, 27, 27, 0.9) 75%,
                rgba(127, 29, 29, 0.95) 100%),
                radial-gradient(ellipse at center, rgba(220, 38, 38, 0.3) 0%, rgba(0, 0, 0, 0.7) 70%);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: 80vh;
    position: relative;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.3) 0%, 
                rgba(0, 0, 0, 0.6) 50%, 
                rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #111827;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.urgent-issues {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.issue-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.issue-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.issue-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.issue-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.issue-link {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

.facts-section {
    padding: 4rem 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.fact-item {
    text-align: center;
    padding: 2rem;
}

.fact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.fact-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.fact-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Evidence Section */
.evidence-section {
    padding: 4rem 0;
    background: white;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.evidence-card {
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

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

.evidence-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.evidence-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.call-to-action {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), #b91c1c);
    color: white;
    text-align: center;
}

.call-to-action h2 {
    color: white;
    margin-bottom: 1rem;
}

.call-to-action p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        width: 200px;
        height: 200px;
    }

    .logo-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .issues-grid {
        grid-template-columns: 1fr;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Modern CSS Features */
@supports (container-type: inline-size) {
    .container {
        container-type: inline-size;
    }
}

/* Improved animations with will-change */
.issue-card:hover,
.fact-item:hover,
.hero-content,
.btn:hover {
    will-change: transform;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .issue-card,
    .fact-item,
    .hero-content,
    .btn {
        will-change: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #000000;
        --text-color: #000000;
        --text-light: #333333;
        --border-color: #000000;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #b91c1c);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.page-hero .hero-description {
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Content sections */
.content-section {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.main-content h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.main-content h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.resource-links,
.emergency-links {
    list-style: none;
}

.resource-links li,
.emergency-links li {
    margin-bottom: 0.5rem;
}

.resource-links a,
.emergency-links a {
    color: var(--text-light);
    text-decoration: none;
}

.resource-links a:hover,
.emergency-links a:hover {
    color: var(--primary-color);
}

/* Evidence and response lists */
.evidence-list,
.response-list {
    list-style: none;
    margin: 1.5rem 0;
}

.evidence-list li,
.response-list li {
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

/* Alert boxes */
.alert-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.alert-box h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.alert-box p {
    color: #78350f;
    margin: 0;
}

/* Action cards */
.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.action-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.action-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Methods grid */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.method-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Protection tips */
.protection-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.tip h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Cases section */
.cases-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.case-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.case-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Action options */
.action-options {
    padding: 4rem 0;
    background: var(--background-light);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.action-option {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.action-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.action-option h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Petitions section */
.petitions-section {
    padding: 4rem 0;
}

.petitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.petition-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.petition-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.petition-stats {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Contact officials section */
.contact-officials-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

/* Awareness section */
.awareness-section {
    padding: 4rem 0;
}

.awareness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.awareness-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.awareness-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Donate section */
.donate-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.donation-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.donation-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.donation-amounts {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.amount-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

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

/* Volunteer section */
.volunteer-section {
    padding: 4rem 0;
}

.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.volunteer-role {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.volunteer-role h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Contact methods */
.contact-methods {
    padding: 4rem 0;
    background: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.contact-link.emergency {
    color: #dc2626;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    color: var(--primary-color);
    font-weight: 500;
}

/* Report incident */
.report-incident {
    padding: 4rem 0;
}

.incident-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.incident-type {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.incident-type h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Office locations */
.office-locations {
    padding: 4rem 0;
    background: var(--background-light);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-contact {
    margin: 1rem 0;
}

.location-contact p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

.hours {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* FAQ section */
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Resources navigation */
.resources-nav {
    background: var(--background-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.resource-tabs {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.resource-tab {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-color);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.resource-tab:hover,
.resource-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Resource sections */
.resource-section {
    padding: 4rem 0;
}

.resource-section:nth-child(even) {
    background: var(--background-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Resource search */
.resource-search {
    padding: 4rem 0;
    background: var(--background-light);
}

.search-container {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-container input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.search-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.search-filters label {
    font-weight: 500;
    color: var(--secondary-color);
}

.search-filters select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: white;
}

/* Stat items */
.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 2rem 0;
    padding-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 2rem;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 200px;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    width: 180px;
    text-align: center;
}

.timeline-content {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-color);
    margin: 0;
}

/* Action List */
.action-list {
    list-style: none;
    padding: 0;
}

.action-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.action-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.action-list li:last-child {
    border-bottom: none;
}

/* Fact List */
.fact-list {
    list-style: none;
    padding: 0;
}

.fact-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.fact-list li:last-child {
    border-bottom: none;
}

/* Emergency List */
.emergency-list {
    list-style: none;
    padding: 0;
}

.emergency-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.emergency-list li:last-child {
    border-bottom: none;
}

/* Tip Cards */
.tip-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.tip-card h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tip-card p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .resource-tabs {
        justify-content: flex-start;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Validation Styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-group select.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.form-group input.error::placeholder,
.form-group textarea.error::placeholder {
    color: #ef4444;
}

/* Form Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Notification Styles */
.notification {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-warning {
    border-left: 4px solid #f59e0b;
}

.notification-info {
    border-left: 4px solid #3b82f6;
}

/* Icon Styles */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-style: normal;
    color: var(--primary-color);
}

.icon-human-rights::before {
    content: "⚖️";
    font-size: 1.2em;
}

.icon-peace::before {
    content: "🕊️";
    font-size: 1.2em;
}

.icon-justice::before {
    content: "⚖️";
    font-size: 1.2em;
}

.icon-small {
    width: 24px;
    height: 24px;
}

.icon-medium {
    width: 32px;
    height: 32px;
}

.icon-large {
    width: 48px;
    height: 48px;
}

.icon-xl {
    width: 64px;
    height: 64px;
}

/* Background Image Utilities */
.bg-hero {
    background-image: url('images/backgrounds/hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.bg-overlay > * {
    position: relative;
    z-index: 2;
}

/* Security Headers Page Styles */
.security-header-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.security-header-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.security-header-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.security-header-item code {
    background: #1f2937;
    color: #f3f4f6;
    padding: 0.75rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    display: block;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

.implementation-steps h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.implementation-steps p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.test-commands h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.test-commands pre {
    background: #1f2937;
    color: #f3f4f6;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.test-commands code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.test-commands ul {
    list-style: none;
    padding: 0;
}

.test-commands li {
    margin-bottom: 0.5rem;
}

.test-commands a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.test-commands a:hover {
    text-decoration: underline;
}

/* Video Section Styles */
.video-section {
    padding: 4rem 0;
    background: var(--background-light);
}

/* Video notice for external links */
.video-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border: 1px solid #2196f3;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.video-notice .notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.video-notice .notice-content {
    color: var(--text-color);
    line-height: 1.4;
}

.video-notice strong {
    color: var(--secondary-color);
}

.video-category {
    margin-bottom: 3rem;
}

.video-category h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

.video-placeholder {
    padding: 1.5rem;
}

.video-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.video-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.video-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.video-source {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.video-duration {
    color: var(--text-light);
    font-weight: 500;
}

.video-embed {
    position: relative;
    width: 100%;
    height: 200px;
    background: #f3f4f6;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1d5db;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    border: none;
    loading: lazy;
}

/* Video Thumbnail Styles for Hosting Compatibility */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    background: #000;
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius);
}

.video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-thumbnail:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 1;
    transition: var(--transition);
}

.video-title-overlay::before {
    content: "🔗 ";
    font-size: 0.8rem;
}

.video-thumbnail:hover .video-title-overlay {
    opacity: 1;
    background: linear-gradient(transparent, rgba(200, 0, 0, 0.9));
}

/* Video info tooltip */
.video-thumbnail::after {
    content: "📺 Opens YouTube in new tab";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 10;
}

.video-thumbnail:hover::after {
    opacity: 1;
    top: -35px;
}

/* External link indicator for CSP-restricted environments */
.external-link-indicator {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem;
    border-radius: 50%;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: var(--transition);
}

.video-thumbnail:hover .external-link-indicator {
    opacity: 1;
    transform: scale(1.1);
}

/* Loading state for videos */
.video-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-size: 0.9rem;
    gap: 1rem;
}

.video-loading p {
    margin: 0;
    font-weight: 500;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Video fallback styles */
.video-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: var(--background-light);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    padding: 1rem;
    gap: 0.5rem;
}

.video-fallback .fallback-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.video-fallback h4 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.video-fallback .video-title {
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.video-fallback .error-message {
    color: var(--text-light);
    margin: 0;
    font-size: 0.85rem;
    font-style: italic;
    max-width: 90%;
}

.video-fallback .fallback-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.video-fallback .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    min-width: auto;
    white-space: nowrap;
}

.video-fallback .btn-secondary {
    background: var(--background-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.video-fallback .btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-1px);
}

/* Video Modal Styles for CSP-Restricted Environments */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.video-modal {
    background: white;
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.video-modal-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.3rem;
    flex: 1;
    padding-right: 1rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

.video-modal-content {
    padding: 2rem;
}

.video-options {
    text-align: center;
    margin-bottom: 2rem;
}

.video-options p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.video-option-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.video-option-btn {
    min-width: 160px;
    text-align: center;
    font-weight: 500;
}

.video-embed-area {
    min-height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.embed-failed {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border: 2px dashed var(--border-color);
}

.embed-failed p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Compatibility notice for video fallbacks */
.compatibility-notice {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.compatibility-notice small {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.8rem;
    display: block;
}

/* Video redirect message */
.video-redirect-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: linear-gradient(135deg, #e8f5e8, #f0f9f0);
    border: 2px solid #4caf50;
    border-radius: var(--border-radius);
    text-align: center;
    padding: 1rem;
    animation: slideInScale 0.3s ease-out;
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-redirect-message .redirect-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.video-redirect-message h4 {
    color: #2e7d32;
    margin: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.video-redirect-message p {
    color: #388e3c;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    max-width: 90%;
}

.video-redirect-message small {
    color: #666;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.video-redirect-message small a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Ganjing World video styles */
.ganjing-video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    background: linear-gradient(135deg, #1e88e5, #1976d2);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ganjing-video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.ganjing-thumbnail-placeholder {
    text-align: center;
    color: white;
    z-index: 2;
}

.ganjing-play-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.ganjing-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 250px;
    line-height: 1.3;
}

.ganjing-video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    opacity: 0.8;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    z-index: 3;
}

.ganjing-video-thumbnail:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.ganjing-video-thumbnail .video-title-overlay {
    background: linear-gradient(transparent, rgba(30, 136, 229, 0.9));
}

.ganjing-video-thumbnail .video-title-overlay::before {
    content: "🌐 ";
}

/* Ganjing redirect message variant */
.ganjing-redirect {
    background: linear-gradient(135deg, #e8f4fd, #f0f8ff);
    border-color: #1e88e5;
}

.ganjing-redirect h4 {
    color: #1565c0;
}

.ganjing-redirect p {
    color: #1976d2;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .video-modal-overlay {
        padding: 0.5rem;
    }

    .video-modal {
        max-height: 95vh;
    }

    .video-modal-header {
        padding: 1rem;
    }

    .video-modal-header h3 {
        font-size: 1.1rem;
    }

    .video-modal-content {
        padding: 1rem;
    }

    .video-option-buttons {
        flex-direction: column;
        align-items: center;
    }

    .video-option-btn {
        min-width: 200px;
    }
}

.placeholder-text {
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

/* Video Instructions */
.video-instructions {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.video-instructions h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.instruction-card {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.instruction-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.instruction-card ol {
    margin: 0;
    padding-left: 1.5rem;
}

.instruction-card li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.instruction-card code {
    background: #1f2937;
    color: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    word-break: break-all;
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-embed {
        height: 180px;
    }
    
    .instruction-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 2rem 0;
    }
    
    .video-placeholder {
        padding: 1rem;
    }
    
    .video-embed {
        height: 160px;
    }
    
    .video-instructions {
        padding: 1.5rem;
    }
}

/* Survivor Section Styles */
.survivor-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.survivor-highlight {
    max-width: 800px;
    margin: 0 auto;
}

.survivor-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border-left: 6px solid var(--primary-color);
    text-align: center;
}

.survivor-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.survivor-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.survivor-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.detail-item {
    background: var(--background-dark);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
}

.detail-item strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* Responsive survivor section */
@media (max-width: 768px) {
    .survivor-card {
        padding: 1.5rem;
    }

    .survivor-details {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Legislative Section Styles */
.legislative-section {
    padding: 4rem 0;
    background: white;
}

.legislative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.legislation-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

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

.legislation-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legislation-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legislation-card strong {
    color: var(--primary-color);
}

.legislation-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.legislation-links .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Responsive legislative section */
@media (max-width: 768px) {
    .legislative-grid {
        grid-template-columns: 1fr;
    }

    .legislation-links {
        flex-direction: column;
    }
}

/* Transnational Repression Page Styles */
.alert-box.critical {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.tactics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tactic-card {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.tactic-card.priority {
    border-left-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(239, 68, 68, 0.05));
}

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

.tactic-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.incident-timeline {
    margin: 2rem 0;
}

.incident-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.incident-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.response-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
    transition: var(--transition);
}

.response-card.urgent {
    border-top-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02), rgba(239, 68, 68, 0.02));
}

.response-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.response-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.response-card .btn {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.urgent-call {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.1));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(220, 38, 38, 0.2);
    margin: 2rem 0;
    text-align: center;
}

.urgent-call h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.urgent-call strong {
    color: var(--primary-color);
}

/* Responsive transnational repression styles */
@media (max-width: 768px) {
    .tactics-grid,
    .response-grid {
        grid-template-columns: 1fr;
    }

    .urgent-call {
        padding: 1.5rem;
        text-align: left;
    }
}

/* Resources Page Styles */
.resource-section.featured {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(239, 68, 68, 0.05));
    padding: 3rem 0;
}

.resource-section.featured h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.resource-card.priority {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03), rgba(239, 68, 68, 0.03));
    position: relative;
}

.resource-card.priority::before {
    content: "🔥 FEATURED";
    position: absolute;
    top: -8px;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.resource-card.priority:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-hover);
}

.resource-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.resource-links .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    flex: 1;
    min-width: 100px;
}

.resource-links .btn.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.resource-links .btn.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Enhanced resource card icons */
.resource-card .resource-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Responsive resources styles */
@media (max-width: 768px) {
    .resource-links {
        flex-direction: column;
    }

    .resource-links .btn {
        width: 100%;
    }

    .resource-card.priority::before {
        right: 0.5rem;
        font-size: 0.6rem;
        padding: 0.1rem 0.6rem;
    }
}

/* Update Banner Styles */
.update-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.update-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    gap: 1rem;
}

.update-content span {
    font-weight: 500;
    font-size: 0.95rem;
}

.update-actions {
    display: flex;
    gap: 0.5rem;
}

.update-btn {
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.update-btn-primary {
    background: white;
    color: #4caf50;
}

.update-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.update-btn-dismiss {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.update-btn-dismiss:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Animations for update banner */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Responsive update banner */
@media (max-width: 768px) {
    .update-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .update-actions {
        width: 100%;
        justify-content: stretch;
    }
    
    .update-btn {
        flex: 1;
    }
}

/* What is Happening Section Styles */
.what-is-happening-section {
    padding: 4rem 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* News Ticker Styles - Simplified Approach */
.news-ticker-container {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    height: 60px;
}

.news-ticker-label {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.news-ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.news-ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
}

.news-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.news-item {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0 2rem;
    display: inline-block;
}

.news-separator {
    color: var(--primary-color);
    font-weight: 700;
    padding: 0 1rem;
}

/* Happening Videos Section */
.happening-videos {
    margin: 3rem 0;
}

/* Happening CTA */
.happening-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
}

.happening-cta p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Responsive News Ticker */
@media (max-width: 768px) {
    .news-ticker-container {
        flex-direction: column;
        height: auto;
    }

    .news-ticker-label {
        text-align: center;
        padding: 0.75rem;
        width: 100%;
    }

    .news-ticker-track {
        animation: ticker-scroll 40s linear infinite;
    }

    .news-item {
        font-size: 0.9rem;
        padding: 0 1.5rem;
    }

    .news-separator {
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    .what-is-happening-section {
        padding: 2rem 0;
    }

    .news-ticker-label {
        font-size: 0.8rem;
    }

    .news-item {
        font-size: 0.85rem;
    }

    .happening-cta {
        padding: 1.5rem;
    }
}

/* Advocacy Footer Styles */
.footer-advocacy {
    background-color: #000000;
    color: #9ca3af;
    font-size: 0.875rem;
    padding: 2.5rem 0;
    margin-top: 5rem;
    border-top: 1px solid #374151;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-col {
    line-height: 1.6;
}

.footer-heading {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-text {
    line-height: 1.75;
    color: #9ca3af;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom-advocacy {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid #374151;
    color: #6b7280;
}

.footer-bottom-advocacy p {
    margin: 0;
}

/* Medical Evidence Highlighting Styles */
.medical-evidence-highlight {
    background: linear-gradient(135deg, #fef2f2, #fee2e2) !important;
    border: 3px solid #dc2626 !important;
    border-radius: 12px !important;
    position: relative;
    overflow: hidden;
}

.medical-evidence-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
    animation: medical-pulse 2s ease-in-out infinite;
}

@keyframes medical-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.medical-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.medical-evidence-highlight h3 {
    color: #dc2626 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem;
}

.highlight-text {
    background: linear-gradient(120deg, #fef2f2 0%, #fee2e2 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.medical-details {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.detail-badge {
    background: #dc2626;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Medical Survivor Section */
.medical-survivor-highlight {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 3px solid #dc2626;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.medical-survivor-highlight::before {
    content: '🔬 MEDICAL EVIDENCE';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.medical-evidence-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
}

.medical-evidence-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.medical-icon-large {
    font-size: 3rem;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.medical-evidence-header h3 {
    color: #dc2626;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.medical-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.5rem;
}

.medical-confirmation {
    background: linear-gradient(120deg, #fef2f2 0%, #fee2e2 100%);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.medical-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.medical-detail {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.evidence-type {
    color: #dc2626;
    font-weight: 600;
}

.medical-badges {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.medical-badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.medical-badge.confirmed {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.medical-badge.forensic {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.medical-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.medical-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* Organ Harvesting Page Medical Evidence Styles */
.medical-evidence-item {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #dc2626;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
}

.medical-evidence-item::before {
    content: '🔬 MEDICAL EVIDENCE';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #dc2626;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.medical-evidence-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.medical-evidence-header .medical-icon {
    font-size: 1.5rem;
}

.medical-evidence-content {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.medical-detail-highlight {
    background: rgba(220, 38, 38, 0.1);
    padding: 0.8rem;
    border-radius: 6px;
    margin-top: 0.8rem;
    border-left: 4px solid #dc2626;
    font-weight: 600;
    color: #374151;
}

.medical-badges-inline {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.medical-badges-inline .medical-badge {
    background: #dc2626;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive Medical Evidence */
@media (max-width: 768px) {
    .medical-evidence-header {
        flex-direction: column;
        text-align: center;
    }
    
    .medical-details {
        grid-template-columns: 1fr;
    }
    
    .medical-badges {
        justify-content: center;
    }
    
    .medical-survivor-highlight::before {
        position: static;
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .medical-evidence-item::before {
        position: static;
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .medical-badges-inline {
        justify-content: center;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .footer-advocacy,
    .hero-buttons,
    .cta-buttons,
    .video-section,
    .update-banner,
    .news-ticker-container {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 1rem 0;
    }

    .hero-visual {
        display: none;
    }
}
