main.join-us-page {
    padding: 2rem;
    max-width: 960px;
    margin: 0 auto;
    background: #111;
    box-shadow: 0 0 5px white;
    border-radius: 10px;
    margin-top: 140px;
}

section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

h2 {
    color: #ff3b30; /* Your primary color */
    margin-bottom: 1rem;
    text-align: center;
}


ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #949494;
}

.next-steps  p {
    margin-bottom: 1rem;
    color: #fff;
}
.what-to-expect p {
    color: #fff;
}
.welcome-introduction p{
    color: #fff;
}
.who-we-are-looking-for p{
    color: #fff;
}
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    background-color: #f9f9f9;
    color: #333;
    padding: 1rem;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 1rem;
    background-color: #0e0d0d;
    display: none;
}

.faq-answer p {
    margin-bottom: 0;
    color: #fff;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff3b30; /* Your primary color */
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button.primary:hover {
    background-color: #cc2922; /* A darker shade */
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    margin-bottom: 0.5rem;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 0.5rem 0;
    }

    main.join-us-page {
        padding: 1.5rem;
    }
}
