body {
    font-family: Arial, sans-serif;
    color: #1f2937;
    background: #ffffff;
}


/* Navbar */

.navbar-brand {
    letter-spacing: -0.5px;
}

.nav-link {
    color: #4b5563;
    margin-left: 10px;
}

.nav-link:hover {
    color: #000000;
}


/* Hero */

.hero-section {
    background: #f8faf9;
    border-bottom: 1px solid #eeeeee;
}

.hero-icon {
    font-size: 150px;
}


/* Feature Cards */

.feature-card {
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: white;
    transition: 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    font-size: 35px;
    margin-bottom: 20px;
}


/* Preparation */

.prep-section {
    background: #f8faf9;
}


/* Footer */

footer {
    background: #ffffff;
}
/* =========================
   Jobs
========================= */

.job-search-box {
    padding: 24px;
    background: #f8faf9;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.job-card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    transition: 0.2s ease;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.empty-jobs {
    padding: 60px 20px;
    border: 1px dashed #d1d5db;
    border-radius: 14px;
}

.empty-icon {
    font-size: 45px;
}
/* ==========================================
   NAVBAR
========================================== */

.navbar {
    min-height: 72px;
}

.navbar-brand {
    font-size: 1.25rem;
}

.navbar .nav-link {
    font-size: 1.05rem;
    padding: 0.65rem 0.8rem !important;
}

.navbar .btn {
    font-size: 1rem;
    padding: 0.55rem 1rem;
}