.header {
    padding: 20px 0;
    background: #fff;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1340px;
}

.header__logo img {
    height: 75px;
    width: auto;
}

.header-card {
    background: #fff;
    border-radius: 18px;
    padding: 12px 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .header__inner {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header__inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .header-card {
        width: 100%;
        justify-content: center;
    }
}