/* Bixby Public Schools Color Variables */
:root {
    --bixby-red: #BA0C2F;
    --bixby-blue: #0033A0;
    --bixby-white: #FFFFFF;
    --bixby-light-red: #E8B3C1;
    --bixby-light-blue: #B3C7E6;
    --bixby-dark-red: #8A0923;
    --bixby-dark-blue: #002266;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, var(--bixby-blue) 0%, var(--bixby-red) 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    text-align: center;
    padding: 2rem 0;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bixby-red);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo i {
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

/* Hero Section */
.hero {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    margin-bottom: 2rem;
}

.walters-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bixby-red);
    box-shadow: 0 8px 25px rgba(186, 12, 47, 0.3);
    transition: transform 0.3s ease;
}

.walters-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(186, 12, 47, 0.4);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--bixby-red), var(--bixby-dark-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Introduction Section */
.introduction {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.introduction-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
}

/* Open Letter Styling */
.letter-date {
    font-size: 1rem;
    color: #666;
    text-align: right;
    margin-bottom: 1rem;
    font-style: italic;
}

.letter-greeting {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.introduction-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Vote Section Main */
.vote-section-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.vote-section-content {
    max-width: 600px;
    margin: 0 auto;
}

.vote-section-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Vote Section */
.vote-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 500px;
    border: 2px solid #dee2e6;
}

.vote-counter {
    margin-bottom: 2rem;
}

.counter-label {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bixby-red);
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thumbs-up-btn {
    background: linear-gradient(135deg, var(--bixby-blue), var(--bixby-dark-blue));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 51, 160, 0.3);
}

.thumbs-up-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 51, 160, 0.4);
}

.thumbs-up-btn:active {
    transform: translateY(0);
}

.thumbs-up-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.vote-feedback {
    margin-top: 1rem;
    font-weight: 600;
    min-height: 1.5rem;
}

.vote-feedback.success {
    color: var(--bixby-blue);
}

.vote-feedback.error {
    color: var(--bixby-red);
}

/* Reasons Section */
.reasons {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

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

.reason-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid #dee2e6;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    font-size: 3rem;
    color: var(--bixby-red);
    margin-bottom: 1rem;
}

.reason-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, var(--bixby-red), var(--bixby-dark-red));
    color: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(186, 12, 47, 0.3);
}

.cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: white;
    color: var(--bixby-red);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--bixby-red);
    transform: translateY(-2px);
}

/* Metrics Section */
.metrics {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.metrics-intro {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.metric-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #dee2e6;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metric-card.critical {
    border-left: 5px solid var(--bixby-red);
    background: linear-gradient(135deg, var(--bixby-light-red), #fdf2f2);
}

.metric-card.warning {
    border-left: 5px solid var(--bixby-blue);
    background: linear-gradient(135deg, var(--bixby-light-blue), #f0f4ff);
}

.metric-card.alert {
    border-left: 5px solid var(--bixby-dark-blue);
    background: linear-gradient(135deg, #e6f0ff, #d1e7ff);
}

.metric-card.summary {
    border-left: 5px solid #2c3e50;
    background: linear-gradient(135deg, #f1f3f4, #e8eaed);
    grid-column: 1 / -1;
}

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

.metric-icon {
    font-size: 2rem;
    color: var(--bixby-red);
}

.metric-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bixby-red);
    margin-bottom: 0.5rem;
}

.metric-detail {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.metric-values {
    margin-bottom: 1rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-grade {
    font-weight: 500;
    color: #555;
}

.metric-rank {
    font-weight: 700;
    color: var(--bixby-red);
    font-size: 1.2rem;
}

.metric-context {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.metric-summary {
    text-align: center;
}

.metric-summary p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.metrics-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #dee2e6;
}

.metrics-footer p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Controversies Section */
.controversies {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.controversies-intro {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.controversy-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #dee2e6;
    transition: transform 0.3s ease;
}

.controversy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.controversy-card.critical {
    border-left: 5px solid var(--bixby-red);
    background: linear-gradient(135deg, var(--bixby-light-red), #fdf2f2);
}

.controversy-card.warning {
    border-left: 5px solid var(--bixby-blue);
    background: linear-gradient(135deg, var(--bixby-light-blue), #f0f4ff);
}

.controversy-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.controversy-number {
    background: #e74c3c;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.controversy-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex-grow: 1;
}

.controversy-date {
    background: #666;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.controversy-content {
    line-height: 1.6;
}

.controversy-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.controversy-content strong {
    color: #2c3e50;
}

.controversies-summary {
    background: linear-gradient(135deg, #f1f3f4, #e8eaed);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #dee2e6;
}

.controversies-summary h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.controversies-summary ul {
    list-style: none;
    padding: 0;
}

.controversies-summary li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.controversies-summary li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0;
}

.controversies-summary strong {
    color: #2c3e50;
}

/* Timeline Section */
.timeline {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.timeline-intro {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #e74c3c, #f39c12, #27ae60, #3498db);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid white;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.timeline-marker.pre-tenure {
    background: #95a5a6;
}

.timeline-marker.year-2023 {
    background: #e74c3c;
}

.timeline-marker.year-2024 {
    background: #f39c12;
}

.timeline-marker.year-2025 {
    background: #27ae60;
}

.timeline-content-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #dee2e6;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 45%;
    transition: transform 0.3s ease;
}

.timeline-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-item:nth-child(odd) .timeline-content-card {
    margin-right: 10%;
}

.timeline-item:nth-child(even) .timeline-content-card {
    margin-left: 10%;
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.timeline-description {
    line-height: 1.6;
}

.timeline-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-description li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.timeline-description li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.timeline-description strong {
    color: #2c3e50;
}

.timeline-summary {
    background: linear-gradient(135deg, #f1f3f4, #e8eaed);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #dee2e6;
    margin-top: 3rem;
}

.timeline-summary h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

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

.observation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.observation-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.observation-text {
    line-height: 1.6;
}

.observation-text strong {
    color: #2c3e50;
}

/* Statistics */
.stats {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stats h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.stat-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #dee2e6;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #e74c3c;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.success-animation {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.modal-body p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.modal-subtext {
    font-size: 0.9rem;
    color: #777;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .walters-photo {
        width: 150px;
        height: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta h3 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Timeline responsive adjustments */
    .timeline-container::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }
    
    .timeline-marker {
        left: 2rem;
    }
    
    .timeline-content-card {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .observation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .timeline-container::before {
        left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .timeline-marker {
        left: 1.5rem;
        width: 16px;
        height: 16px;
    }
    
    .timeline-content-card {
        padding: 1.5rem;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
    
    .timeline-description li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .thumbs-up-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background: #000;
        color: #fff;
    }
    
    .hero, .reasons, .stats {
        background: #000;
        border: 2px solid #fff;
    }
    
    .reason-card, .stat-item {
        background: #000;
        border: 2px solid #fff;
    }
}
