.deedpoll-contact-help,
.deedpoll-contact-help * {
    box-sizing: border-box;
}

.deedpoll-contact-help {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: #101a2c;
}

.deedpoll-contact-help__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.deedpoll-contact-help__content {
    flex: 0 0 46%;
    max-width: 46%;
    min-width: 0;
    padding-left: 4px;
}

.deedpoll-contact-help__visual {
    flex: 1 1 0;
    min-width: 0;
    overflow: visible;
}

.deedpoll-contact-help__visual img {
    display: block;
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
    border-radius: 44px 0 0 44px;
}

.deedpoll-contact-help__badge {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 10px 18px;
    margin: 0 0 48px;
    border-radius: 30px;
    background: #edf4ff;
    color: #12469b;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap;
}

.deedpoll-contact-help__badge-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: #5d94f4;
}

.deedpoll-contact-help__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.deedpoll-contact-help__badge-icon svg,
.deedpoll-contact-help__badge-icon i {
    width: 1em;
    height: 1em;
    font-size: 0.75em;
}

.deedpoll-contact-help__heading {
    padding: 0;
    margin: 0 0 34px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 62px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.deedpoll-contact-help__heading-line {
    display: block;
}

.deedpoll-contact-help__heading-line--1,
.deedpoll-contact-help__heading-line--3 {
    color: #121a2a;
}

.deedpoll-contact-help__heading-line--2 {
    color: #0b3a82;
}

.deedpoll-contact-help__description {
    max-width: 565px;
    margin: 0 0 50px;
    color: #3f4a5d;
    font-size: 18px;
    line-height: 1.65;
}

.deedpoll-contact-help__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.deedpoll-contact-help__card {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid #edf1f6;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(10, 38, 80, 0.08);
    text-decoration: none !important;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}

.deedpoll-contact-help__card[href]:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(10, 38, 80, 0.12);
}

.deedpoll-contact-help__card-icon {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf2fe;
    color: #0b3a82;
}

.deedpoll-contact-help__card-icon i {
    font-size: 38px;
}

.deedpoll-contact-help__card-icon svg {
    width: 38px;
    height: 38px;
    fill: currentColor;
}

.deedpoll-contact-help__card-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.deedpoll-contact-help__card-title {
    display: block;
    color: #101a2c;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.deedpoll-contact-help__card-text {
    display: block;
    color: #49556a;
    font-size: 15px;
    line-height: 1.45;
}

.deedpoll-contact-help__dots {
    --dpch-dot-color: #c8ddf7;
    position: absolute;
    z-index: 1;
    width: 132px;
    height: 96px;
    opacity: .55;
    pointer-events: none;
    background-image: radial-gradient(circle, var(--dpch-dot-color) 2px, transparent 2.4px);
    background-size: 20px 20px;
}

.deedpoll-contact-help__dots--top {
    left: 1.4%;
    top: 5%;
}

.deedpoll-contact-help__dots--bottom {
    left: 34%;
    bottom: 1.5%;
    transform: scale(.75);
}

@media (max-width: 1024px) {
    .deedpoll-contact-help__inner {
        gap: 30px;
    }

    .deedpoll-contact-help__content {
        flex-basis: 48%;
        max-width: 48%;
    }

    .deedpoll-contact-help__heading {
        font-size: 48px;
    }

    .deedpoll-contact-help__visual img {
        height: 530px;
    }

    .deedpoll-contact-help__cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .deedpoll-contact-help__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .deedpoll-contact-help__content {
        flex: 0 0 auto !important;
        max-width: none !important;
        width: 100%;
        padding-left: 0;
    }

    .deedpoll-contact-help__badge {
        white-space: normal;
        margin-bottom: 30px;
        font-size: 14px;
    }

    .deedpoll-contact-help__heading {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .deedpoll-contact-help__description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .deedpoll-contact-help__cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .deedpoll-contact-help__card {
        padding: 16px;
    }

    .deedpoll-contact-help__card-icon {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .deedpoll-contact-help__visual img {
        height: auto !important;
        max-height: none;
        border-radius: 28px !important;
    }

    .deedpoll-contact-help__dots--bottom {
        display: none;
    }
}
