*{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    body{
        background: #f5f7fa;
        color: #333;
    }

    .career-section{
        max-width: 1200px;
        margin: 50px auto;
        padding: 20px;
    }

    .career-header{
        text-align: center;
        margin-bottom: 40px;
    }

    .career-header h1{
        font-size: 40px;
        color: #222;
        margin-bottom: 10px;
    }

    .career-header p{
        color: #666;
        font-size: 16px;
    }

    .job-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .job-card{
        background: white;
        border-radius: 15px;
        padding: 35px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: 0.3s ease;
        flex-direction: column;
        justify-content: space-between;
    }

    .job-card:hover{
        transform: translateY(-5px);
    }

    .job-title{
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #222;
    }

    .job-info{
        color: #777;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .job-desc{
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #555;
        text-align: justify;
        min-height: 80px;
    }

    .apply-btn{
        display: inline-block;
        padding: 12px 20px;
        background: #2563eb;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        transition: 0.3s;
    }

    .apply-btn:hover{
        background: #1d4ed8;
    }

    @media(max-width: 600px){
        .career-header h1{
        font-size: 30px;
        }
    }