.get-involved {
    padding: 60px 20px;
    background-color: #fafafa;
}

.get-involved h1 {
    font-size: 2.5em;
    margin-bottom: 2.5rem;
    color: #333;
    text-align: center;
}

.get-involved .intro {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.get-involved .lead {
    font-size: 1.3em;
    font-style: italic;
    color: #6759c3;
    margin-bottom: 4rem;
    text-align: center;
}

.involvement-ways {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 630px;
    margin: 0 auto;
}

.way {
    background: linear-gradient(135deg, white, rgba(103, 89, 195, 0.1));
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(103, 89, 195, 0.08);
    border: 1px solid rgba(103, 89, 195, 0.1);
    border-top: 4px solid #6759c3;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease-in-out;
}

.way:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 89, 195, 0.12);
    background: linear-gradient(135deg, white, rgba(103, 89, 195, 0.08));
}

.title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.way-number {
    flex-shrink: 0;
    width: 32px;
    height: 36px;
    background: #FFD700;
    position: relative;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 1.2em;
    font-weight: 500;
    border: 3px solid black;
    margin: 0;
}

.way-content {
    flex: 1;
}

.way h2 {
    color: #6759c3;
    font-size: 1.5em;
    margin-bottom: 0;
    margin-top: 0;
}

.way h2::before {
    display: none;
}

.way p {
    font-size: 1em;
    line-height: 1.6;
    text-align: left;
    color: #555;
    margin-bottom: 1rem;
}

.checkmark-list, .icon-list, .social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkmark-list li, .icon-list li, .social-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    text-align: left;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 0;
}

.checkmark-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 0;
}

.checkmark-list li::before {
    content: '✅';
    flex-shrink: 0;
}

.icon {
    flex-shrink: 0;
    font-size: 1.2em;
}

.social-list {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.social-list li {
    padding-left: 0;
}

.social-list a {
    color: #6759c3;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(103, 89, 195, 0.05);
}

.social-list a:hover {
    background: rgba(103, 89, 195, 0.1);
    text-decoration: none;
}

.outro {
    font-size: 1.3em;
    line-height: 1.6;
    color: #555;
    margin-top: 4rem;
    text-align: center;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .get-involved {
        padding: 40px 20px;
    }

    .way {
        padding: 1.5rem;
        gap: 1.5rem;
        border-top: 3px solid #6759c3;
    }

    .way-number {
        width: 28px;
        height: 32px;
        font-size: 1.1em;
        border: 2px solid black;
    }

    .way h2 {
        font-size: 1.3em;
    }

    .social-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
} 