/* General Styles */
body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    color: #333;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #333;
    margin-right: 1rem;
}

.navbar-nav .nav-link.active {
    color: #556ee6;
}

.btn-primary {
    background-color: #556ee6;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #4455cc;
}

/* Join Us Section */
.join-us-section {
    padding-top: 3rem !important;
    background-color: #f9f9f9;
    padding: 60px 0;
}

.join-us-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.join-us-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.join-us-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

/* List Styles */
.join-us-section ul {
    font-size: 1.1rem;
    color: #666;
    margin: 1rem 0 2rem 0;
    padding-left: 1.5rem;
}

/* Job Listings Section */
.job-listings .py-5 {
    padding-top: 0px !important;
}

.job-listings {
    padding-top: 0px !important;
}

.job-listings h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.note-text {
    font-size: 0.9rem;
    /* Smaller font size */
    color: #666;
    /* Consistent color with the other text */
    display: block;
    /* Ensure it takes a full line */
}

.small-text {
    font-size: 0.9rem;
    /* Adjusted for consistency */
    color: #666;
    /* Consistent with the body text */
}

/* Card Styles for Roles */
.card {
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 2rem;
    text-align: left;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Apply Note Section */
.apply-note {
    padding: 30px 0;
}

.apply-note p {
    font-size: 1.1rem;
    color: #666;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .join-us-section h1,
    .join-us-section h2,
    .job-listings h2,
    .apply-note p {
        font-size: 1.8rem;
    }

    .join-us-section p,
    .join-us-section ul,
    .card p {
        font-size: 1rem;
    }
}