/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    margin: 0;
    background: #ffff;
    color: #222;
    line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
    background: #4f46e5;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.logo img {
    height: 60px;
}

.tagline {
    font-size: 12px;
    color: #ffeb3b;
}

.navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-left: 12px 20px;
    transition: opacity 0.2s;
}

.navbar a:hover {
    text-decoration: underline;
}

/* ================= MAIN PAGE ================= */
.vacancy-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px 20px;
}

.vacancy-page h1 {
    background: #fff;
    padding: 15px;
    border-left: 15px solid #0d47a1;
    font-size: 24px;
    margin-bottom: 15px;
}
.publish-info {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}
.publish-info time {
    font-weight: 600;
    color: #0d47a1;
}

.intro-text {
    background: #fff;
    padding: 15px;
    margin-bottom: 70px;
    border-radius: 15px;
    border: 3px solid
}

/* ================= SECTIONS ================= */
.vacancy-section {
    background: #fff;
    padding: 20px;
    margin-bottom: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: 3px solid;
}

.vacancy-section h2 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #0d47a1;
    border-bottom: 2px solid #e3e3e3;
    padding-bottom: 5px;
}
/* ================= IMPORTANT LINKS BUTTONS ================= */

.important-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.imp-btn {
    display: block;
    text-align: center;
    padding: 14px 10px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Button Colors */
.imp-btn.apply {
    background: #4f46e5; /* Green */
}

.imp-btn.notice {
    background: #4f46e5; /* Blue */
}

.imp-btn.syllabus {
    background: #4f46e5; /* Purple */
}

.imp-btn.more {
    background: #4f46e5; /* Orange */
}

/* Hover Effect */
.imp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.3);
    opacity: 0.95;
}


/* ================= TABLE ================= */
.job-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.job-table th,
.job-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.job-table th {
    background: #f1f5fb;
    width: 30%;
    color: #0d47a1;
}

.job-table tr:nth-child(even) {
    background: #fafafa;
}

/* ================= LISTS ================= */
.vacancy-section ul,
.vacancy-section ol {
    padding-left: 20px;
}

.vacancy-section li {
    margin-bottom: 8px;
}

/* ================= LINKS & BUTTONS ================= */
.vacancy-section a {
    color: #ffff;
    font-weight: 500;
    text-decoration: none;
}

.vacancy-section a:hover {
    text-decoration: underline;
}

/* ================= FOOTER ================= */
footer {
    background: #4f46e5;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul {
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .vacancy-page h1 {
        font-size: 20px;
    }

    .vacancy-section h2 {
        font-size: 18px;
    }

    .job-table th {
        width: 40%;
    }
}
