body {
    font-family: Roboto, sans-serif;
    margin: 0 auto;
    background: #f7f7f7;
    max-width: 1100px;
}

header {
    background: #cd0808;
    color: #fff;
    padding: 15px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 45px;
    font-family: Open Sans, sans-serif;
}

header p {
    margin: 5px 0 0;
    font-size: 18px;
}

nav {
    background: #2c3e50;
    padding: 10px;
    text-align: center;
    font-family: Open Sans, sans-serif;
}

nav a {
    color: #fff;
    margin: 0 12px;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

nav a:hover {
    color: #fff;
    background: #ff6900;
}


.mobile-menu {
    display: none;
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2c3e50;
    min-width: 110px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
    font-family: Open Sans, sans-serif;
}

.dropdown-content a {
    display: block;
    color: #fff;
    padding: 8px 12px;
    text-align: left;
    margin: 0;
}

.dropdown-content a:hover {
    background-color: #ff6900;
}

.dropdown:hover .dropdown-content {
    display: block;
}

section.latest-jobs {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;

}

section.latest-jobs h2 {
    background: #900;
    text-align: center;
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 18px;
    line-height: 22px;
}

section.latest-jobs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

section.latest-jobs li {
    position: relative;
    padding-left: 22px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 22px;
    border-bottom: 1px solid #eee;
}

section.latest-jobs li::before {
    content: "•";
    position: absolute;
    left: 10px;
    top: 12px;
    color: #900;
    font-size: 20px;
}

section.latest-jobs li:last-child {
    border-bottom: none;
}

section.latest-jobs li a {
    color: blue;
    text-decoration: none;
}

section.latest-jobs li a:hover {
    color: #ff6900;
}

footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s, text-decoration 0.3s;
}

footer a:hover {
    color: #ff6900;
    /* hover पर orange */
    text-decoration: none;
}

@media(max-width:600px) {
    
    header h1 {
    margin: 0;
    font-size: 32px;
    font-family: Open Sans, sans-serif;
    }

    body {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    nav {
        padding: 8px;
    }

    nav a {
        margin: 5px 6px;
        padding: 6px 8px;
        font-size: 10px;
    }

    .dropdown-content {
        min-width: 0;
        max-width: 100vw;
        left: 0;
        right: 0;
        width: auto;
    }

    section.latest-jobs ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    section.latest-jobs li {
        position: relative;
        padding-left: 22px;
        padding-top: 10px;
        font-size: 18px;
        line-height: 22px;
        border-bottom: 1px solid #eee;
    }

    section.latest-jobs li::before {
        content: "•";
        position: absolute;
        left: 10px;
        top: 12px;
        color: #900;
        font-size: 20px;
    }


}