@font-face {
        font-family: 'UnitRoundedPro';
        src: url("UnitRoundedPro.otf") format('opentype');
        font-weight: normal;
        font-style: normal;
}
@font-face {
        font-family: 'UnitRoundedPro';
        src: url("UnitRoundedPro.eot") format('embedded-opentype');
        font-weight: normal;
        font-style: normal;
}
@font-face {
        font-family: 'UnitRoundedPro';
        src: url("UnitRoundedPro.svg") format('svg');
        font-weight: normal;
        font-style: normal;
}
@font-face {
        font-family: 'UnitRoundedPro';
        src: url("UnitRoundedPro.ttf") format('truetype');
        font-weight: normal;
        font-style: normal;
}
@font-face {
        font-family: 'UnitRoundedPro';
        src: url("UnitRoundedPro.woff") format('woff');
        font-weight: normal;
        font-style: normal;
}
body {
    margin: 0;
    background: #ffffff;
    font-family: UnitRoundedPro, sans-serif;
}

/* Page container to prevent full-width stretching */
.page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

/* Top navigation bar */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    flex: 1;
    margin: 0 100px;
}
.header-title {
   display: flex;
   height: 3rem;
}

/* Language dropdown container */
.lang-box {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.lang-box img {
    width: 22px;
    height: 22px;
}

.lang-box select {
    padding: 3px 5px;
    font-size: 14px;
}

/* Hero header */
.hero {
    position: relative;
    height: 380px;
    background-image: url('d14d5ff0fff26df47757ea13e294b9a0.jpg'); /* replace with actual banner */
    background-size: cover;
    background-position: top;
    color: white;
    justify-content: center;
    margin: 0 100px;
    margin-top: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0;
}

.hero h1 {
    font-style: normal;
    font-weight: normal;
    font-size: 50px;
    margin-bottom: 0;
}

.hero p {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
}
.landing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 60px;
    border-radius: 0;
    font-family: "UnitRoundedPro";
}

.cta-button {
    height: 35px;
    padding: 10px 60px;
    font-family: "UnitRoundedPro";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.2rem;
    letter-spacing: .4px;
    width: fit-content;
    color: #fff;
    border: none;
    background-color: #4b647d;
    white-space: nowrap;
    text-decoration: none;
}

.cta-button:hover {
    background: #3d5165;
}
