body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    text-align: center;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Logo */
.logo img {
    width: 180px;
}

/* Website text */
.site-name {
    font-size: 18px;
    color: #10b15a;
}

/* Navigation buttons */
.nav {
    margin: 30px 0;
}

.nav a {
    text-decoration: none;
    background: #10b15a;
    color: white;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 30px;
    font-size: 18px;
    display: inline-block;
}

.nav a.active {
    background: #0a8f47;
}

/* Job cards */
.container {
    width: 80%;
    margin: auto;
}

.job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    text-decoration: none;
    color: black;
}

.job-card img {
    width: 200px;
}

.job-card p {
    width: 60%;
    font-size: 18px;
    text-align: left;
}

/* Hover effect */
.job-card:hover {
    background: #e8f5e9;
    transform: scale(1.02);
    transition: 0.3s;
}.logo img {
    width: 250px;
    margin-top: 20px;
}.logo {
    text-align: center;
}

.logo p {
    color: #10b15a;
    font-size: 20px;
    margin-top: 10px;
}@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        width: 140px;
    }
.logo img:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

    .site-name {
        margin-top: 10px;
        font-size: 16px;
    }

    .nav a {
        display: block;
        margin: 10px auto;
        width: 80%;
    }

    .job-card {
        flex-direction: column;
        text-align: center;
    }

    .job-card img {
        width: 150px;
        margin-bottom: 10px;
    }

    .job-card p {
        width: 100%;
        text-align: center;
    }
}.job-card img {
    max-width: 180px;
    height: auto;
}.job-text button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #10b15a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}/* HERO */
.hero {
    margin: 40px 0;
}

.hero h1 {
    font-size: 36px;
}

.hero p {
    font-size: 18px;
    color: #555;
}

/* CATEGORIES */
.categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.category-card {
    background: white;
    padding: 30px;
    width: 250px;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-card:hover {
    background: #e8f5e9;
    transition: 0.3s;
}.article {
    width: 70%;
    margin: 40px auto;
    text-align: left;
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.article h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.article h2 {
    margin-top: 20px;
    color: #10b15a;
}

.article p {
    font-size: 18px;
    line-height: 1.6;
}

/* Intro text */
.intro {
    font-weight: bold;
}

/* Call to action */
.cta {
    margin-top: 30px;
    text-align: center;
}

.cta a {
    background: #10b15a;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
}

.cta a:hover {
    background: #0a8f47;
}.job-card {
    display: block;
    text-align: left;
    background: white;
    padding: 20px;
    margin: 15px auto;
    border-radius: 10px;
    width: 80%;
    text-decoration: none;
    color: black;
}.job-card:hover {
    background: #e8f5e9;
    transform: translateY(-3px);
    transition: 0.3s;
}