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

.entry-title {
    display: none
}

body {
    font-family: 'Yekan', sans-serif
}

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transition: background-color .3s ease;
    background-color: #DAE7D1
}

.header-inner {
    margin-right: 10%;
    padding-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px
}

.logo {
    margin-left: 10%;
    flex: 0 0 auto;
    text-align: left
}

.logo a {
    text-decoration: none;
    display: inline-block
}

.logo img {
    width: 90px;
    height: auto
}

.menu-container {
    flex: 1;
    margin: 0 10%;
    text-align: center;
    position: relative
}

.main-navigation ul {
    list-style: none;
    display: inline-flex;
    gap: 2rem;
    margin: 0;
    padding: 0
}

.main-navigation li {
    display: inline-block
}

.main-navigation a {
    text-decoration: none;
    color: #009A6E;
    font-weight: 600;
    font-family: 'Yekan', sans-serif;
    transition: color .2s ease
}

.main-navigation a:hover {
    color: #000
}

.hamburger-toggle {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    margin-left: 1rem
}

.cta-area {
    flex: 0 0 auto;
    text-align: right
}

.cta-button {
    background-color: #009A6E;
    color: #fff;
    font-family: 'Yekan', sans-serif;
    font-weight: 700;
    padding: .8rem 1.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color .2s ease
}

.cta-button-text {
    color: #fff;
    font-family: 'Yekan', sans-serif;
    font-weight: 700
}

.cta-button-text:hover {
    color: #C2EFB3
}

.cta-button:hover {
    background-color: #007d5a
}

@media (max-width:768px) {
    .main-navigation ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, .9);
        margin-right: auto;
        margin-left: auto;
        padding-left: auto;
        padding-right: auto;
        backdrop-filter: blur(10px)
    }

    .main-navigation.open ul {
        display: flex;
        width: 100vw;
        justify-content: center
    }

    .hamburger-toggle {
        display: block
    }
}