.main-section {
    --header-slot-height: clamp(180px, 24vh, 230px);
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 20;
    min-height: var(--header-slot-height);
}

.main-content {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - var(--header-slot-height));
    margin-top: calc(var(--header-slot-height) * -0.5);
    padding: 0;
}

.clinics-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 0;
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 0;
}
