body {
    font-family: 'Inter', sans-serif;
    min-width: 375px;
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
    background-color: white;
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.header-nav {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.left_side {
    display: flex;
    gap: 225px;
}

.logo img {
    width: 57px;
    height: 64px;
}

.btn-find {
    padding: 12px 10px;
    background-color: #02B000;
    color: black;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
}

.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #1772B9;
}

.left_nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.left_nav ul {
    display: flex;
    gap: 48px;
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
}

.left_nav ul li {
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
}

.left_nav ul li a {
    text-decoration: none;
    color: #1772B9;
}

#languageSwitcherDesktop,
#languageSwitcherMobile {
    background: none;
    border: none;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    color: #1772B9;
    cursor: pointer;
    outline: none;
    padding-right: 14px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='%231772B9' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-nav a {
    padding: 15px;
    text-decoration: none;
    color: #1772B9;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.custom-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        #1772B9;
    border: none;
}

/* section-start */

.missions {
    max-width: 1100px;
    margin: 30px auto 70px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: #2a2a2a;
}

.missions-title {
    font-size: 48px;
    font-weight: 400;
    color: #1772B9;
    font-family: 'Dancing Script', cursive;
}

.custom-line-2 {
    width: 40%;
    height: 1.5px;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), #1772B9;
    margin: 15px auto 40px auto;
    border: none;
}

.missions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-item {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.mission-item:hover {
    transform: translateY(-8px);
}

.mission-item h3 {
    font-size: 30px;
    font-family: 'Dancing Script', cursive;
    color: #1772B9;
    margin-bottom: 15px;
    font-weight: 500;
}

.mission-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.mission-item p {
    font-size: 15px;
    font-family: "Inter", sans-serif;
    color: #5D5D5D;
    line-height: 1.6;
}


/* footer-start */
.footer {
    background-color: #F1F4F6;
    padding: 10px 15px 3px 15px;
}

.footer-quote {
    text-align: center;
    color: #5D5D5D;
    font-size: 16px;
    font-family: 'Cutive Mono', monospace;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.footer-icons {
    display: flex;
    gap: 10px;
    margin-right: 37px;

}

.footer-logo {
    width: 33px;
    height: 37px;
}

.footer-linkedin {
    width: 37px;
    height: 37px;
}

.footer-copy {
    font-size: 11px;
    color: #1772B9;
    margin-right: 22px;
}