/* Section setup */
.events-section {
    min-height: 100vh;            /* full viewport height */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    background-color: rgb(255, 255, 255);
    font-family: 'Aileron', sans-serif;
    margin-top: 5rem;
}

/* Heading */
.impact-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 4rem;
    color: rgb(0, 50, 125);
    margin-bottom: 2rem;
}

/* Text loaded from file */
.join-text {
    width: 50%;
    text-align: justify;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Container for items */
.join-items {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Each row */
.join-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: rgb(248, 247, 242);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    min-height: 120px;
}

/* Title */
.join-item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    color: rgb(0, 50, 125);
    width: 80%;
    text-align: left;
}

/* Apply button */
.join-item-button {
    font-family: 'Aileron', sans-serif;
    background-color: rgb(19, 83, 138);
    color: white;
    padding: 0.6rem 3rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.join-item-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: underline;
}
