body {
    padding-top: 80px;
}

.pulse-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: #2f6fed;
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.pulse-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.pulse-logo {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

.pulse-nav {
    display: flex;
    gap: 20px;
}

.pulse-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.pulse-nav a:hover {
    opacity: 0.8;
}

.pulse-search {
    flex: 1;
    display: flex;
    max-width: 600px;
    border: 2px solid #5a94d4;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
}

.pulse-search input {
    flex: 1;
    padding: 12px 16px;
    width: 90%;
    border: none;
    outline: none;
    font-size: 16px;
    background-color: #fef8e7;
    color: #333;
}

.pulse-search input::placeholder {
    color: #999;
}

.pulse-search button {
    width: 20%;
    padding: 0 20px;
    border: none;
    background-color: #5a94d4;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.pulse-search button:hover {
    background-color: #467ec0;
}

.pulse-burger {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
    .pulse-search {
        width: 100%;
        margin-top: 10px;
    }

    .pulse-burger {
        display: block;
    }

    .pulse-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #2f6fed;
        margin-top: 10px;
    }

    .pulse-nav.show {
        display: flex;
    }

    .pulse-nav a {
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media(max-width: 480px) {
    .pulse-logo{
        font-size: 16px;
    }

    .search-button {
        font-size: 0 !important;
        overflow: hidden;
    }
}