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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1a237e 0%, #c62828 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

nav h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

nav a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

nav a.active {
    color: #ffd700;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a237e 0%, #c62828 50%, #1a237e 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero-text h2 {
    text-align: left;
}

.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 160px 30px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    opacity: 0.3;
}

.hero h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    margin-top: 2rem;
}

.hero-bold {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.hero-question {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffcdd2;
}

/* Actual Images */
.hero-missing-poster {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.fact-icon {
    margin-bottom: 1rem;
    text-align: center;
}

.fact-image {
    max-width: 120px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.comparison-image {
    margin-bottom: 1rem;
    text-align: center;
}

.comparison-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.context-visual {
    text-align: center;
    margin-bottom: 3rem;
}

.context-infographic {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.action-visual {
    margin-bottom: 1rem;
    text-align: center;
}

.action-image {
    max-width: 100px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Facts Section */
.facts-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, #f5f5f5 0%, white 100%);
}

.facts-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #c62828;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

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

.fact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fact-card:hover {
    transform: translateY(-5px);
}

.fact-card.danger {
    border-color: #c62828;
    background: linear-gradient(135deg, #ffebee 0%, white 100%);
}

.fact-card.warning {
    border-color: #ff8f00;
    background: linear-gradient(135deg, #fff8e1 0%, white 100%);
}

.fact-card.alert {
    border-color: #d32f2f;
    background: linear-gradient(135deg, #fce4ec 0%, white 100%);
}

.fact-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #c62828;
}

.fact-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.source-citation {
    margin-top: auto;
    padding: 1rem;
    background: rgba(26, 35, 126, 0.1);
    border-radius: 8px;
    border-left: 4px solid #1a237e;
}

.source-citation small {
    color: #1a237e;
    font-weight: 600;
}

.source-citation a {
    color: #1a237e;
    text-decoration: underline;
    font-weight: 700;
}

.source-citation a:hover {
    color: #c62828;
    text-decoration: none;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
}

.comparison-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

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

.good-example,
.current-situation {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.good-example {
    border-left: 6px solid #2e7d32;
}

.current-situation {
    border-left: 6px solid #c62828;
}

.comparison-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.good-example h3 {
    color: #2e7d32;
}

.current-situation h3 {
    color: #c62828;
}

.comparison-grid ul {
    list-style: none;
}

.comparison-grid li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.comparison-grid li:before {
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.good-example li:before {
    content: "✓";
    color: #2e7d32;
}

.current-situation li:before {
    content: "✗";
    color: #c62828;
}

.comparison-grid li:last-child {
    border-bottom: none;
}

/* Context Section */
.context-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, #f5f5f5 0%, white 100%);
}

.context-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a237e;
    font-weight: 700;
}

.context-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.context-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.context-item.electoral {
    border-left: 6px solid #2e7d32;
}

.context-item.access {
    border-left: 6px solid #c62828;
}

.context-item h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.context-item.electoral h3 {
    color: #2e7d32;
}

.context-item.access h3 {
    color: #c62828;
}

.context-item ul {
    list-style: none;
    margin-bottom: 1rem;
}

.context-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.context-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.context-item.electoral li:before {
    color: #2e7d32;
}

.context-item.access li:before {
    color: #c62828;
}

.context-item a {
    color: #1a237e;
    text-decoration: underline;
    font-weight: 600;
}

.context-item a:hover {
    color: #c62828;
    text-decoration: none;
}

.context-conclusion {
    text-align: center;
    background: linear-gradient(135deg, #c62828 0%, #d32f2f 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.big-question {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
}

.answer-hint {
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 600;
}

/* Counter Arguments Section */
.counter-arguments-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff5722 0%, #d84315 100%);
    color: white;
}

.counter-arguments-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.counter-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #ffd700;
    font-weight: 600;
}

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

.excuse-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-left: 6px solid #ff5722;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.excuse-card h3 {
    font-family: 'Oswald', sans-serif;
    color: #ff5722;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    flex-grow: 1;
}

.reality {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1a237e;
    margin-top: auto;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.reality h4 {
    font-family: 'Oswald', sans-serif;
    color: #1a237e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.reality p {
    line-height: 1.6;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #c62828 0%, #1a237e 100%);
    color: white;
}

.values-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.values-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #ffd700;
    font-weight: 600;
}

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

.value {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.value h3 {
    font-family: 'Oswald', sans-serif;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.value p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Sources Section */
.sources-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, #f5f5f5 0%, white 100%);
}

.sources-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a237e;
    font-weight: 700;
}

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

.sources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.source-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #1a237e;
}

.source-item h3 {
    font-family: 'Oswald', sans-serif;
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.source-item ul {
    list-style: none;
}

.source-item li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    line-height: 1.5;
}

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

.source-item a {
    color: #1a237e;
    text-decoration: underline;
    font-weight: 700;
}

.source-item a:hover {
    color: #c62828;
    text-decoration: none;
}

.additional-context {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #666;
    text-align: center;
}

.additional-context h3 {
    font-family: 'Oswald', sans-serif;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, #f5f5f5 0%, white 100%);
}

.contact-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a237e;
    font-weight: 700;
}

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

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 6px solid #1a237e;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a237e;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 1rem;
    margin-top: 0.2rem;
    transform: scale(1.2);
}

.submit-btn {
    background: linear-gradient(135deg, #c62828 0%, #d32f2f 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin: 2rem auto 1rem auto;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.3);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Action Section */
.action-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a237e 0%, #c62828 100%);
    color: white;
}

.action-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.action-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #ffd700;
    font-weight: 600;
}

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

.action-item {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.action-item:hover {
    transform: translateY(-5px);
}

.action-item.urgent {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #fff9c4 0%, white 100%);
}

.action-item h3 {
    font-family: 'Oswald', sans-serif;
    color: #c62828;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.phone-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
    margin: 1rem 0;
    padding: 1rem;
    background: #e3f2fd;
    border-radius: 8px;
}

.action-tip {
    font-style: italic;
    color: #666;
    font-weight: 500;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a237e 0%, #000051 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.ai-disclosure {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h2 {
        text-align: center;
    }

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

    .comparison-grid,
    .context-grid,
    .sources-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .fact-grid,
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }
}
        grid-template-columns: 1fr;
    }
}