.page-template-page-deflatehae-patient .patient-accordion-floating-wrapper {
    width: 100%;
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.page-template-page-deflatehae-patient .patient-accordion-floating-container {
    max-width: 1454px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-standard);
    position: relative;
}

.page-template-page-deflatehae-patient .patient-accordion-floating-shadow-wrapper {
    position: relative;
    margin: 0 auto;
    padding-bottom: 20px;
    filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.page-template-page-deflatehae-patient .patient-accordion-floating-headline {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 760px;
    width: 100%;
    color: var(--color-nav-gray);
    background-color: var(--color-yellow);
    font-weight: 600;
    font-size: var(--font-size-h3);
    line-height: var(--font-lh-h3);
    margin: 0;
    padding: 30px 0;
    text-align: center;
    clip-path: var(--clip-path-headline-bowl);
    z-index: 3;
}

.page-template-page-deflatehae-patient .patient-accordion-floating-content {
    width: 100%;
    margin: 0 auto;
    padding: 80px 80px 120px;
    background-color: var(--color-white);
    position: relative;
    display: flex;
    flex-direction: column;
    clip-path: var(--clip-path-fixed-bowl);
}

.page-template-page-deflatehae-patient .patient-accordion-floating-subheadline {
    color: var(--color-red);
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    margin: 20px 10% 40px;
}

.page-template-page-deflatehae-patient .patient-accordion-floating-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-template-page-deflatehae-patient .patient-accordion-item {
    border-bottom: 1px solid var(--color-red);
}

.page-template-page-deflatehae-patient .patient-accordion-item:last-child {
    border-bottom: none;
}

.page-template-page-deflatehae-patient .patient-accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    cursor: pointer;
}

.page-template-page-deflatehae-patient .patient-accordion-header h3 {
    color: var(--color-red);
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
}

.page-template-page-deflatehae-patient .patient-accordion-icon {
    color: var(--color-red);
    font-size: 24px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-template-page-deflatehae-patient .patient-accordion-icon::before {
    content: '+';
    transition: all 0.3s ease;
}

.page-template-page-deflatehae-patient .patient-accordion-item.active .patient-accordion-icon::before {
    content: '-';
}

.page-template-page-deflatehae-patient .patient-accordion-content {
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 44px; /* 24px icon width + 20px gap */
}

.page-template-page-deflatehae-patient .patient-accordion-content::before {
    content: '';
    position: absolute;
    left: 11px; /* Half of icon width (24px/2) - half of line width (2px/2) */
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-red);
}

.page-template-page-deflatehae-patient .patient-accordion-item.active .patient-accordion-content {
    max-height: 500px;
    margin-bottom: 20px;
}

.page-template-page-deflatehae-patient .patient-accordion-content p {
    margin: 0;
    padding: 20px 0;
}

@media screen and (max-width: 1599px) {
    .page-template-page-deflatehae-patient .patient-accordion-floating-subheadline {
        font-size: 24px;
        line-height: 34px;
    }
}

@media screen and (max-width: 1024px) {
    .page-template-page-deflatehae-patient .patient-accordion-floating-content {
    }
}

@media screen and (max-width: 768px) {
    .page-template-page-deflatehae-patient .patient-accordion-floating-wrapper {
        padding: 60px 0;
    }

    .page-template-page-deflatehae-patient .patient-accordion-floating-headline {
        max-width: 75%;
        padding: 20px 0;
    }

    .page-template-page-deflatehae-patient .patient-accordion-floating-content {
        padding: 60px 20px;
        clip-path: var(--clip-path-fixed-mobile-bowl);
    }

    .page-template-page-deflatehae-patient .patient-accordion-floating-subheadline {
        font-size: 20px;
        line-height: 26px;
        margin: 30px 20px;
    }

    .page-template-page-deflatehae-patient .patient-accordion-content {
        padding-left: 40px;
    }

    .page-template-page-deflatehae-patient .patient-accordion-content::before {
        left: 10px;
    }
} 