﻿
    .intro {
        text-align: center;
        margin: 20px 0;
        font-size: 1.1rem;
        color: var(--text-medium);
    }

    .job-openings, .why-join, .testimonials, .how-to-apply {
        margin: 40px 0;
    }

        .job-openings h2, .why-join h2, .testimonials h2, .how-to-apply h2 {
            color: var(--primary-dark);
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .job-openings ul, .why-join ul {
            list-style-type: none;
            padding: 0;
        }

        .job-openings li, .why-join li {
            background-color: var(--primary-light);
            margin: 10px 0;
            padding: 15px;
            border-radius: 5px;
            font-size: 1rem;
            color: var(--text-dark);
        }

            .job-openings li::before, .why-join li::before {
                content: "✔";
                color: var(--accent-orange);
                margin-right: 10px;
            }

    .no-experience {
        text-align: center;
        font-size: 1.1em;
        color: var(--text-medium);
        margin: 20px 0;
    }

    .testimonials blockquote {
        background-color: var(--primary-light);
        padding: 20px;
        border-left: 5px solid var(--accent-orange);
        margin: 20px 0;
        font-style: italic;
        color: var(--text-dark);
        border-radius: 5px;
    }

    .testimonials cite {
        display: block;
        margin-top: 10px;
        color: var(--text-medium);
        font-weight: bold;
    }

    .how-to-apply p {
        font-size: 1rem;
        text-align: center;
    }

    .cta-button {
        display: inline-block;
        background-color: var(--accent-orange);
        color: var(--text-white);
        padding: 15px 30px;
        text-decoration: none;
        border-radius: 5px;
        font-size: 1rem;
        transition: background-color 0.3s;
        margin: 20px auto;
        text-align: center;
    }

        .cta-button:hover {
            background-color: var(--accent-blue);
        }
