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

:root {
    --primary-color: #1a1a1a;
    --accent-color: #cc0000;
    --text-light: #666;
    --border-color: #e0e0e0;
    --bg-light: #f8f8f8;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background: white;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    transition: box-shadow 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--accent-color);
    text-decoration: none;
    display: inline-block;
}


nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--primary-color);
}

.hero .subtitle {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Pillars */
.hero-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 60px auto 50px;
}

.pillar-item {
    background: white;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pillar-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1.3;
}

.pillar-starter {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pillar-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.cta-primary {
    background: var(--accent-color);
    color: white;
    padding: 18px 40px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
}

.cta-primary:hover {
    background: #b30000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 18px 40px;
    border: 2px solid var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: -1px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

/* Problems Section */
.problems {
    background: white;
}

.problems-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    min-height: 500px;
}

/* Problems Sidebar */
.problems-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.problem-item {
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.problem-item:hover {
    background: #f0f0f0;
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.problem-item.active {
    background: white;
    border-left-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.problem-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-color);
}

.problem-summary {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Problems Detail Panel */
.problems-detail {
    position: relative;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 4px;
    min-height: 400px;
}

.problem-detail-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-detail-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.problem-detail-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
}

.problem-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.problem-description p:first-child {
    font-weight: 500;
    color: var(--primary-color);
}

/* Vision Section */
.vision {
    background: var(--bg-light);
}

/* Vision Numbered List */
.vision-list {
    max-width: 900px;
    margin: 0 auto;
}

.vision-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 40px;
    background: white;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vision-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.vision-item:last-child {
    margin-bottom: 0;
}

.vision-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-color);
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1) 0%, rgba(204, 0, 0, 0.05) 100%);
    border-radius: 4px;
    line-height: 1;
}

.vision-content {
    flex: 1;
}

.vision-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.vision-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Manifesto Section */
.manifesto {
    background: white;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.manifesto-content p {
    margin-bottom: 24px;
}

.manifesto-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.highlight-text {
    background: linear-gradient(120deg, rgba(204, 0, 0, 0.1) 0%, rgba(204, 0, 0, 0.05) 100%);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    margin: 40px 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
}

.manifesto-date {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    text-align: right;
}

.manifesto-date p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Timeline & Support Combined Section */
.timeline-support {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.timeline-support .section-title {
    color: white;
    margin-bottom: 50px;
}

/* Join Header Section */
.join-header-section {
    text-align: center;
    margin-bottom: 40px;
}

/* Progress Timeline */
.progress-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 70px;
    max-width: 900px;
    padding: 0;
}

.milestone-node {
    text-align: center;
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 120px;
}

.milestone-node.current {
    background: rgba(204, 0, 0, 0.1);
    border: 2px solid var(--accent-color);
    position: relative;
}

.milestone-node.current::after {
    content: 'Մենք այստեղ ենք';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.node-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
}

.node-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
    font-weight: 900;
    font-size: 24px;
}

.progress-current {
    color: var(--accent-color);
}

.progress-separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.progress-target {
    color: rgba(255, 255, 255, 0.5);
}

.milestone-node.achieved .progress-current,
.milestone-node.achieved .progress-target {
    color: var(--accent-color);
}

.node-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    max-width: 140px;
    text-align: center;
    line-height: 1.4;
}

.timeline-connector {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    align-self: center;
    position: relative;
    overflow: hidden;
}

.connector-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-color);
    transition: width 0.5s ease;
}

.timeline-connector.filled .connector-progress {
    width: 100%;
}

/* Join Message & Actions */
.join-message-actions {
    max-width: 900px;
    margin: 0 auto;
}

.join-text {
    font-size: 17px;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Join Options */
.join-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.join-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 35px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.join-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.option-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.option-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.option-btn {
    width: 100%;
    padding: 16px 28px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    margin-top: 20px;
}

.option-btn:hover {
    background: #b30000;
    transform: translateY(-2px);
}

.option-btn.secondary {
    background: transparent;
    border: 2px solid white;
}

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

/* Forms Container */
.join-forms-container {
    max-width: 600px;
    margin: 0 auto;
}

.join-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.form-close {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.form-close:hover {
    background: var(--accent-color);
    color: white;
    transform: rotate(90deg);
}

/* Join Form */
.join-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group .optional {
    font-weight: 400;
    color: var(--text-light);
    font-size: 13px;
}

.join-form input[type="text"],
.join-form input[type="email"] {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    background: white;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-family: inherit;
}

.join-form input::placeholder {
    color: #aaa;
}

.join-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.form-info-box {
    background: var(--bg-light);
    border-left: 3px solid var(--accent-color);
    padding: 16px 20px;
    border-radius: 6px;
}

.form-info-box p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.form-submit-btn {
    background: var(--accent-color);
    color: white;
    padding: 16px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    letter-spacing: 0.3px;
}

.form-submit-btn:hover {
    background: #b30000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3);
}

/* Skills Selection */
.skills-select {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.skill-tag {
    cursor: pointer;
}

.skill-tag input[type="checkbox"] {
    display: none;
}

.skill-tag span {
    display: inline-block;
    padding: 10px 18px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    color: var(--primary-color);
}

.skill-tag:hover span {
    border-color: var(--accent-color);
    background: rgba(204, 0, 0, 0.05);
}

.skill-tag input[type="checkbox"]:checked + span {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Brand Section */
.brand-section {
    background: var(--bg-light);
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
}

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

.brand-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.brand-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
    text-align: left;
}

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

.brand-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.brand-colors {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

.color-tile {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-info {
    text-align: left;
}

.color-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.color-hex {
    font-size: 12px;
    font-family: 'Courier New', monospace;
    color: var(--text-light);
    font-weight: 500;
}

/* Custom Notification System */
.custom-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: white;
    color: var(--primary-color);
    padding: 18px 24px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    font-size: 16px;
    font-weight: 500;
    max-width: 400px;
    border-left: 5px solid var(--accent-color);
    transition: right 0.3s ease;
}

.custom-notification.show {
    right: 30px;
}

.custom-notification.success {
    border-left-color: #22c55e;
    background: #f0fdf4;
    color: #166534;
}

.custom-notification.error {
    border-left-color: var(--accent-color);
    background: #fef2f2;
    color: #991b1b;
}

.custom-notification.info {
    border-left-color: #3b82f6;
    background: #eff6ff;
    color: #1e40af;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #0a0a0a;
    color: white;
    text-align: center;
}

.footer-text {
    opacity: 0.7;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--border-color);
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    nav li {
        border-bottom: 1px solid var(--border-color);
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 15px 20px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .hero-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px auto 40px;
    }

    .pillar-item {
        padding: 25px 20px;
    }

    .pillar-item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .pillar-starter {
        font-size: 12px;
        letter-spacing: 0.8px;
        margin-bottom: 6px;
    }

    .pillar-item p {
        font-size: 14px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 320px;
        padding: 16px 30px;
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    /* Mobile Problems Section */
    .problems-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .problems-sidebar {
        order: 2;
    }

    .problems-detail {
        order: 1;
        padding: 25px;
    }

    .problem-detail-content h2 {
        font-size: 24px;
    }

    .problem-description p {
        font-size: 16px;
    }

    .problem-item {
        padding: 15px;
    }

    .problem-item h3 {
        font-size: 16px;
    }

    .problem-summary {
        font-size: 13px;
    }

    /* Mobile Vision Section */
    .vision-item {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .vision-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin: 0 auto;
    }

    .vision-content h3 {
        font-size: 20px;
        text-align: center;
    }

    .vision-content p {
        font-size: 16px;
    }

    /* Mobile Timeline & Support Section */
    .timeline-support {
        padding: 60px 0;
    }


    .progress-timeline {
        flex-direction: column;
        gap: 0;
        margin-bottom: 60px;
        padding: 20px 0;
    }

    .milestone-node {
        margin-bottom: 20px;
    }

    .node-progress {
        font-size: 20px;
        gap: 4px;
    }

    .progress-current,
    .progress-target {
        min-width: 35px;
    }

    .node-label {
        font-size: 11px;
    }

    .timeline-connector {
        display: none;
    }

    .join-text {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .join-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .join-option {
        padding: 30px 25px;
        min-height: 160px;
    }

    .option-content h4 {
        font-size: 20px;
    }

    .option-content p {
        font-size: 15px;
    }

    .join-form-wrapper {
        padding: 30px 25px;
    }

    .form-header h3 {
        font-size: 20px;
    }

    .join-form input[type="text"],
    .join-form input[type="email"] {
        padding: 12px 14px;
        font-size: 14px;
    }

    .skills-select {
        gap: 8px;
    }

    .skill-tag span {
        padding: 8px 14px;
        font-size: 12px;
    }

    .manifesto-content {
        font-size: 16px;
    }

    .highlight-text {
        font-size: 18px;
        padding: 20px;
    }
}

/* 2026 Elections Outcomes Section */
.elections-outcomes {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
}

.elections-outcomes .section-title {
    color: var(--primary-color);
}

.elections-outcomes .section-subtitle {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 60px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.outcome-card {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid var(--accent-color);
}

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

.outcome-card.primary {
    border-top-color: var(--accent-color);
}

.outcome-card.secondary {
    border-top-color: var(--primary-color);
}

.outcome-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.outcome-icon {
    font-size: 48px;
    line-height: 1;
}

.outcome-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.outcome-content {
    color: #333;
}

.outcome-intro {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.outcome-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
}

.outcome-list li:before {
    content: "→";
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.outcome-list li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.outcomes-footer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.05) 0%, rgba(204, 0, 0, 0.1) 100%);
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
}

.outcomes-promise {
    font-size: 20px;
    line-height: 1.7;
    color: var(--primary-color);
    margin: 0;
}

.outcomes-promise strong {
    font-weight: 800;
    color: var(--accent-color);
}

/* Mobile Responsive for Elections Outcomes */
@media (max-width: 768px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .outcome-card {
        padding: 30px 25px;
    }

    .outcome-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .outcome-icon {
        font-size: 40px;
    }

    .outcome-header h3 {
        font-size: 24px;
    }

    .outcome-intro {
        font-size: 17px;
    }

    .outcome-list li {
        font-size: 16px;
        padding-left: 25px;
    }

    .outcomes-footer {
        padding: 30px 20px;
    }

    .outcomes-promise {
        font-size: 18px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.faq-section .section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(204, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: white;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(204, 0, 0, 0.03);
    color: var(--accent-color);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(220, 38, 38, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .logo {
        font-size: 18px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px 18px;
    }

    .custom-notification {
        right: -100%;
        left: 10px;
        max-width: calc(100% - 20px);
        font-size: 14px;
        padding: 14px 18px;
    }

    .custom-notification.show {
        right: auto;
        left: 10px;
    }
}
