/* Career Page Specific Styles */
* {
    font-family: 'Bricolage Grotesque', sans-serif;
}

.career-page {
    background-color: #f9f9f9;
    padding: 250px 20px 50px;
    color: #333;
}

    /* Job Posting Section */
    .career-page .job-postings {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        margin-bottom: 50px;
    }

    .career-page .job-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        width: 300px;
        text-align: center;
        transition: transform 0.2s;
    }

        .career-page .job-card:hover {
            transform: scale(1.02);
        }

        .career-page .job-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #5AA9E6;
        }

        .career-page .job-card a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
        }

            .career-page .job-card a:hover {
                color: #FFE45E;
            }

    /* Application Form */
    .career-page .application-form {
        max-width: 600px;
        margin: 0 auto;
        padding: 30px;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

        .career-page .application-form h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        .career-page .application-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .career-page .application-form input,
        .career-page .application-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 5px;
            border: 1px solid #ccc;
        }

        .career-page .application-form button {
            background-color: #5AA9E6;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }

            .career-page .application-form button:hover {
                background-color: #FFE45E;
            }

/* Responsive Design */
@media (max-width: 768px) {
    .career-page .job-postings {
        flex-direction: column;
        align-items: center;
    }
}
