* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 40px;
    color: #0b1f3a;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0b1f3a;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-transform: uppercase;
    font-size: 14px;
    color: #0b1f3a;
    position: relative;
    cursor: default;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #0b1f3a;
    transition: .3s;
}

.nav a:hover::after {
    width: 100%;
}

.hero {
    margin-top: 80px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 58, 0.65);
}

.hero-content {
    position: relative;
    min-height: 90vh;
    width: 65%;
    z-index: 1000;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 10px;
}

.hero p {
    margin-top: 20px;
    font-size: 20px;
}

.slider-section {
    padding: 100px 0px;
}

.slider-section img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 12px;
}

.adventages {
    padding: 60px 40px;
    background: #f4f7fb;
}

.about {
    background: #f4f7fb;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about p {
    margin-top: 20px;
    line-height: 1.7;
    color: #444;
}

.jobs p {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 50px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.job-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid #e3e7ef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.job-card:hover {
    transform: translateY(-5px);
}

.cv {
    background: #0b1f3a;
    color: white;
}

.cv-box {
    max-width: 700px;
    margin: auto;
    text-align: center;
    padding: 30px 20px;
}

.cv-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.cv-form input,
.cv-form textarea {
    padding: 14px;
    border: none;
    border-radius: 8px;
}

.cv-form button {
    background: white;
    color: #0b1f3a;
    padding: 14px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
}

.license {
    background: #f4f7fb;
    padding: 15px 0;
    border-top: 1px solid #e3e7ef;
}

.license-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.license-item {
    max-width: 400px;
}

.license-item p {
    margin: 5px 0;
    color: #333;
    line-height: 1.6;
}

.center {
    text-align: center;
}

.file-upload {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.file-upload input {
    display: none;
}

.file-upload label {
    background: white;
    color: #0b1f3a;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #dbe2ef;
    transition: .3s;
}

.file-upload label:hover {
    background: #f1f5fb;
}

.file-name {
    font-size: 14px;
    color: #ccc;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #0b1f3a;
    border-radius: 2px;
    transition: .3s;
}

@media (max-width: 768px) {

    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        gap: 25px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: .3s;
    }

    .nav.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

}

@media (max-width: 1200px) {

    .container {
        width: 95%;
    }

    .slider-section img {
        height: 500px;
    }

    .jobs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 992px) {

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .hero {
        height: 70vh;
    }

    .hero-content {
        width: 75%;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .hero p {
        font-size: 18px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-section img {
        height: 400px;
    }

    .license-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

}

@media (max-width: 768px) {

    .header-inner {
        height: 70px;
    }

    .logo {
        font-size: 18px;
    }

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 12px;
    }

    .hero {
        height: 60vh;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .slider-section img {
        height: 300px;
    }

    .cv-box {
        padding: 20px 10px;
    }

}

@media (max-width: 480px) {

    .section-title {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 14px;
    }

    .file-upload {
        flex-direction: column;
        align-items: stretch;
    }

    .file-upload label {
        width: 100%;
        text-align: center;
    }

    .file-name {
        text-align: center;
    }

}