.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.join-us {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.section-title {
    color: #ff7300;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.section-description {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 40px;
    line-height: 1.6;
}

.card-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.job-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.job-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease;
    border-top: 1px solid #eee; /* Added to ensure top border is visible */
}

.job-card:hover {
    transform: translateY(-10px);
}

.card-content {
    padding: 20px;
}

.card-content h2 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.card-content p {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    background-color: #ff7300;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #ff7300;
}

.card-footer {
    background-color: #f9f9f9;
    padding: 10px 20px;
    border-top: 1px solid #eee;
}

.card-footer p {
    color: #999;
    font-size: 0.9em;
    margin: 0;
    text-align: left;
}

.card-footer p span {
    color: #999;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2em;
    }

    .section-description {
        font-size: 1em;
    }

    .job-card {
        width: 45%;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2em;
    }

    .section-description {
        font-size: 0.95em;
    }

    .job-card {
        width: 100%;
    }

    .job-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8em;
    }

    .section-description {
        font-size: 0.9em;
    }

    .job-card {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5em;
    }

    .section-description {
        font-size: 0.85em;
    }

    .job-card {
        width: 100%;
    }
}