*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f4f6f9;
    color:#333;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */
header{
    background:#0056b3;
    color:#fff;
    text-align:center;
    padding:25px 15px;
}

header h1{
    margin-bottom:10px;
    font-size:36px;
}

header p{
    margin-bottom:15px;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin:0 10px;
    font-weight:bold;
}

nav a:hover{
    text-decoration:underline;
}

/* Hero */
.hero{
    background:#fff;
    margin:20px auto;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.hero h2{
    margin-bottom:10px;
    font-size:32px;
}

.hero p{
    margin-bottom:20px;
}

.search-box{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.search-box input{
    width:350px;
    max-width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
}

.search-box button{
    padding:12px 20px;
    background:#0056b3;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.search-box button:hover{
    background:#003f85;
}

/* Section Headings */
h2{
    margin:30px 15px 15px;
}

/* Countries & Categories */
.country-grid{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    padding:0 15px 20px;
}

.country-grid a{
    background:#fff;
    color:#0056b3;
    text-decoration:none;
    padding:12px 18px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
    font-weight:bold;
}

.country-grid a:hover{
    background:#0056b3;
    color:#fff;
}

/* Job Cards */
.job-card{
    background:#fff;
    margin:15px;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.job-card h3{
    margin-bottom:10px;
}

.job-card h3 a{
    color:#0056b3;
    text-decoration:none;
}

.job-card h3 a:hover{
    text-decoration:underline;
}

.job-card p{
    margin-top:8px;
}

/* Footer */
footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:20px;
    margin-top:30px;
}

/* Mobile */
@media(max-width:768px){

    header h1{
        font-size:28px;
    }

    .hero h2{
        font-size:24px;
    }

    .search-box{
        flex-direction:column;
        align-items:center;
    }

    .search-box input,
    .search-box button{
        width:100%;
    }

    .country-grid{
        flex-direction:column;
    }

    .country-grid a{
        text-align:center;
    }
}
.view-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 18px;
    background:#0056b3;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
}

.view-btn:hover{
    background:#003f85;
}