
    #allrecords .section ul {
        padding: 0;
    }

    .section {
        font-family: 'Inter';
        background-color: #EDEDED;
    }

    .section *,
    .section ::before,
    .section ::after {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    .section input[type="text"],
    .section input[type="number"],
    .section button {
        font-family: inherit;
    }

    .section button {
        cursor: pointer;
    }

    .container {
        width: 100%;
        max-width: 1892px;
        margin: 0 auto;
        padding: 60px 44px;
    }

    .section__header {
        text-align: center;
        margin-bottom: 80px;
    }

    .section__title {
        font-size: 80px;
        font-weight: 500;
    }

    .section__subtitle {
        display: block;
        margin-top: 16px;
        font-size: 32px;
        font-weight: 300;
    }

    .audience-section__list ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }

    .audience-card {
        padding: 40px 32px;
        display: flex;
        justify-content: space-between;
        gap: 64px;
        border-radius: 24px;
        transition: background-color 0.2s;
    }

    .audience-card:hover {
        background-color: white;
    }

    .audience-card__left {
        position: relative;
        flex-grow: 1;
    }

    .audience-card__figure {
        position: absolute;
        top: -10%;
        right: -5%;
        transform: rotate(70deg) scale(0.75);
        opacity: 0;
        transition: opacity 0.2s;
    }
    
    .audience-section__list li:nth-child(2) .audience-card__figure {
        right: -12%;
    }

    .audience-card:hover .audience-card__figure {
        opacity: 1;
    }

    .audience-card__right {
        flex: 0 0 50%;
    }

    .audience-card__title {
        font-size: 48px;
        font-weight: 400;
    }

    .audience-card__description {
        font-size: 30px;
    }

    .audience-card__button {
        margin-top: 32px;
        padding: 20px 24px;
        display: inline-flex;
        opacity: 0;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 400;
        border-radius: 100px;
        border: 2px solid #2B2B2B;
        text-decoration: none;
        color: black !important;
        transition-property: opacity, background-color, color;
        transition-duration: 0.2s;
    }

    .audience-card__button svg {
        transition-property: filter 0.2s;
    }

    .audience-card:hover .audience-card__button {
        opacity: 1;
    }

    .audience-card__button:hover {
        background-color: black;
        color: white !important;
    }

    .audience-card__button:hover svg {
        filter: invert(100%);
    }



    /* help section */

    .help-section__content {
        background-color: white;
        border-radius: 24px;
        padding: 40px 36px;
    }

    .help-section .section__subtitle {
        max-width: 960px;
        margin-left: auto;
        margin-right: auto;
    }

    .help-section__form {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .help-section__money-buttons {
        display: flex;
        gap: 24px;
    }

    .help-section__input,
    .help-section__money-button,
    .help-section__submit-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        border: 2px solid black;
        font-size: 24px;
        padding: 24px 32px;
    }

    .help-section__input,
    .help-section__money-button {
        background-color: #EDEDED;
        color: #757575;
    }

    .help-section__input {
        text-align: center;
    }

    .help-section__money-button {
        flex: 1 1 0;
        color: black;
    }

    .help-section__submit-button {
        background-color: black;
        color: white;
    }

    /* responsive design */

    @media (max-width: 1380px) {
        .audience-card {
            gap: 48px;
        }

        .audience-card__title {
            font-size: 40px;
        }

        .audience-card__description {
            font-size: 24px;
        }
    }

    @media (max-width: 1024px) {
        .container {
            padding-left: 20px;
            padding-right: 20px;
        }

        .section__header {
            margin-bottom: 60px;
        }
            
        .section__title {
            font-size: 60px;
        }

        .section__subtitle {
            font-size: 24px;
        }

        .audience-section__list ul {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            place-items: stretch;
        }

        .audience-section__list li:last-child {
            grid-column: span 2;
        }

        .audience-card {
            height: 100%;
            flex-direction: column;
            gap: 32px;
            background-color: white;
        }
        
        .audience-card__figure {
            display: none;
        }

        .audience-card__title {
            font-size: 32px;
        }

        .audience-card__description {
            font-size: 18px;
        }

        .audience-card__button {
            display: none;
        }

        .help-section__form,
        .help-section__money-buttons {
            gap: 16px;
        }

        .help-section__input,
        .help-section__money-button,
        .help-section__submit-button {
            padding: 20px 28px;
        }
    }

    @media (max-width: 768px) {
        .section__header {
            margin-bottom: 40px;
        }
        
        .section__title {
            font-size: 40px;
        }

        .section__subtitle {
            font-size: 20px;
        }

        .audience-card {
            gap: 24px;
        }

        .audience-card__title {
            font-size: 28px;
        }

        .audience-card__description {
            font-size: 16px;
        }
            
        .help-section__content {
            padding-left: 24px;
            padding-right: 24px;
        }
    
        .help-section__form,
        .help-section__money-buttons {
            gap: 12px;
        }

        .help-section__input,
        .help-section__money-button,
        .help-section__submit-button {
            padding: 16px 24px;
        }
    }

    @media (max-width: 640px) {
        .container {
            padding-left: 10px;
            padding-right: 10px;
        }

        .help-section .section__header {
            margin-bottom: 32px;
        }
        
        .section__title {
            font-size: 32px;
        }

        .section__subtitle {
            font-size: 16px;
        }

        .audience-section__list ul {
            display: flex;
            flex-direction: column;
        }

        .audience-card {
            gap: 20px;
            padding: 24px 16px;
        }
    
        .help-section__form,
        .help-section__money-buttons {
            gap: 8px;
        }
        
        .help-section__input,
        .help-section__money-button,
        .help-section__submit-button {
            font-size: 16px;
        }
    }

    @media (max-width: 440px) {
        .audience-card {
            gap: 16px;
        }

        .audience-card__title {
            font-size: 24px;
        }
            
        .help-section__content {
            padding-left: 12px;
            padding-right: 12px;
        }

        .help-section__money-button {
            padding: 10px 12px;
        }
    }
