/* ===== GLOBAL ===== */

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: #f1f5f9;
    color: #1f2937;
    line-height: 1.7;
    font-size: 16px;
}

/* ===== MAIN WRAPPER ===== */

.job-wrapper {
    max-width: 1100px;
    margin: 30px auto;
    padding: 20px;
}

/* ===== HEADER ===== */

.job-header {
    background: linear-gradient(135deg,#2563eb,#1e40af);
    color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.job-header h1 {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #ffffff;
}

.job-sub {
    font-size: 14px;
    color: #e5e7eb;
}

/* ===== INFO CARD ===== */

.info-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.info-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.info-card p {
    font-size: 16px;
    color: #374151;
}

/* ===== GRID ===== */

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* ===== CARDS ===== */

.card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.card h3 {
    background: #2563eb;
    color: #ffffff;
    padding: 12px;
    font-size: 18px;
    text-align: center;
    margin: 0;
}

.card ul {
    list-style: disc inside;
    padding: 15px;
    margin: 0;
}

.card li {
    padding: 6px 0;
    font-size: 16px;
    color: #374151;
}

.big-card {
    margin-bottom: 20px;
}

/* ===== TABLE SECTION ===== */

.table-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.table-card h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1e3a8a;
}

/* ===== MODERN TABLE ===== */

.modern-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.modern-table th {
    background: #1e3a8a;
    color: #ffffff;
    padding: 12px;
    text-align: center;
    font-size: 16px;
}

.modern-table td {
    border: 1px solid #e5e7eb;
    padding: 12px;
    font-size: 16px;
    color: #374151;
}

.modern-table tr:nth-child(even) {
    background: #f9fafb;
}

/* ===== LINK HOVER ===== */

.list-link:hover {
    color: #e63946;
    background: #f5f5f5;
    padding-left: 12px;
    border-radius: 4px;
}

/* ===== BUTTON ===== */

.btn {
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.btn.green {
    background: #16a34a;
    color: #ffffff;
}

.btn.green:hover {
    background: #15803d;
}

.btn.blue {
    background: #2563eb;
    color: #ffffff;
}

.btn.blue:hover {
    background: #1d4ed8;
}

/* ===== RED TEXT ===== */

.red {
    color: #dc2626;
    font-weight: 600;
}

/* ===== MOBILE ===== */

@media(max-width:768px) {

    .job-header h1 {
        font-size: 22px;
    }

    .info-card h2,
    .table-card h2 {
        font-size: 18px;
    }

    .card h3 {
        font-size: 16px;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }
}