/* Main Styles */
.activism-main {
    background-color: #fff;
}

/* Hero Section */
.activism-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 120px 0 80px;
    margin-bottom: 80px;
}

.activism-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.activism-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.activism-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Timeline Section */
.activism-timeline {
    padding: 80px 0;
    position: relative;
}

.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent,
        var(--primary-color) 10%,
        var(--primary-color) 90%,
        transparent
    );
    top: 0;
}

.timeline-item {
    margin-bottom: 80px;
    position: relative;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    padding-left: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    padding-right: 60px;
    text-align: right;
}

.timeline-content {
    width: 45%;
    position: relative;
    padding: 30px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -70px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -70px;
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Resources Section */
.activism-resources {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.resources-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.resources-content {
    text-align: center;
}

.resources-content h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.resources-item {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.resources-text {
    text-align: left;
}

.resources-text h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.resources-text p {
    color: var(--text-color);
    margin: 0;
}

.resources-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.resources-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .activism-hero {
        padding: 100px 0 60px;
    }

    .activism-title {
        font-size: 3rem;
    }

    .timeline-wrapper::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        padding-left: 30px;
        padding-right: 30px;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -40px;
        right: auto;
    }

    .resources-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .resources-text {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .activism-hero {
        padding: 80px 0 40px;
    }

    .activism-title {
        font-size: 2.5rem;
    }

    .activism-lead {
        font-size: 1.1rem;
    }

    .timeline-content h3 {
        font-size: 1.5rem;
    }

    .resources-content h3 {
        font-size: 2rem;
    }
} 