body.page:not(.home) #content.site-content {
    background:
        radial-gradient(circle at top left, rgba(222, 125, 52, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(187, 58, 37, 0.12), transparent 24%),
        linear-gradient(180deg, #f7f4ee 0%, #f2eee7 100%);
}

body.page:not(.home) #primary.content-area {
    padding-top: 64px;
    padding-bottom: 96px;
}

body.page:not(.home) .site-main > .container {
    max-width: 1180px;
}

body.page:not(.home) .entry-content {
    color: #31404b;
}

body.page:not(.home) .entry-content h1,
body.page:not(.home) .entry-content h2,
body.page:not(.home) .entry-content h3 {
    color: #121315;
    font-family: "DM Sans", sans-serif;
    line-height: 1.1;
}

body.page:not(.home) .entry-content p,
body.page:not(.home) .entry-content li,
body.page:not(.home) .entry-content a {
    font-size: 17px;
    line-height: 1.75;
}

.hanson-page {
    display: grid;
    gap: 28px;
}

.hanson-page a {
    color: #bb3a25;
    text-decoration: none;
}

.hanson-page a:hover {
    color: #de7d34;
}

.hanson-hero,
.hanson-card,
.hanson-cta,
.hanson-form-shell {
    border-radius: 28px;
    overflow: hidden;
}

.hanson-hero {
    position: relative;
    padding: 44px;
    background:
        linear-gradient(135deg, rgba(18, 19, 21, 0.98) 0%, rgba(32, 35, 39, 0.96) 56%, rgba(63, 31, 22, 0.95) 100%);
    box-shadow: 0 30px 70px rgba(18, 19, 21, 0.16);
    color: #f7f3ec;
}

.hanson-hero::after {
    content: "";
    position: absolute;
    inset: auto -70px -80px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 125, 52, 0.25), rgba(222, 125, 52, 0));
}

.hanson-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: #f0c7ab;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hanson-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(240, 199, 171, 0.7);
}

body.page:not(.home) .entry-content .hanson-hero h1 {
    max-width: 12ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

body.page:not(.home) .entry-content .hanson-hero .hanson-lead {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(247, 243, 236, 0.88);
    font-size: 1.12rem;
    line-height: 1.85;
}

.hanson-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hanson-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.hanson-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.hanson-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hanson-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 19, 21, 0.08);
    box-shadow: 0 18px 45px rgba(39, 46, 54, 0.08);
    backdrop-filter: blur(10px);
}

.hanson-card h2,
.hanson-card h3 {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hanson-card p:last-child,
.hanson-card ul:last-child {
    margin-bottom: 0;
}

.hanson-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.hanson-list li {
    position: relative;
    padding-left: 26px;
}

.hanson-list li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bb3a25 0%, #de7d34 100%);
    box-shadow: 0 0 0 6px rgba(222, 125, 52, 0.12);
}

.hanson-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hanson-stat {
    padding: 22px;
    border-radius: 24px;
    background: rgba(18, 19, 21, 0.04);
}

.hanson-stat strong {
    display: block;
    margin-bottom: 8px;
    color: #121315;
    font-size: 1.25rem;
    font-weight: 800;
}

.hanson-link-card {
    display: block;
    height: 100%;
    color: inherit;
}

.hanson-link-card:hover h3 {
    color: #bb3a25;
}

.hanson-link-card span {
    display: inline-flex;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hanson-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.hanson-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #bb3a25 0%, #de7d34 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 18px 35px rgba(187, 58, 37, 0.22);
}

.hanson-button:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.hanson-button--ghost {
    background: rgba(18, 19, 21, 0.06);
    color: #121315;
    box-shadow: none;
}

.hanson-button--ghost:hover {
    color: #121315;
    background: rgba(18, 19, 21, 0.1);
}

.hanson-cta {
    padding: 34px;
    background: linear-gradient(135deg, rgba(251, 245, 236, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(18, 19, 21, 0.08);
    box-shadow: 0 18px 40px rgba(33, 40, 48, 0.07);
}

.hanson-cta h2 {
    margin: 0 0 14px;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hanson-cta p:last-child {
    margin-bottom: 0;
}

.hanson-form-shell {
    padding: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 19, 21, 0.08);
    box-shadow: 0 18px 45px rgba(39, 46, 54, 0.08);
}

.hanson-form-shell .form-clt {
    position: relative;
}

.hanson-form-shell .form-clt input,
.hanson-form-shell .form-clt textarea {
    min-height: 62px;
    padding: 18px 18px 18px 54px;
    border: 1px solid rgba(18, 19, 21, 0.12);
    border-radius: 18px;
    background: #f8f5ef;
    color: #121315;
    font-size: 16px;
}

.hanson-form-shell .form-clt textarea {
    min-height: 180px;
    padding-top: 18px;
}

.hanson-form-shell .form-clt .icon {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #bb3a25;
}

.hanson-form-shell .theme-btn,
.hanson-form-shell button[type="submit"] {
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #bb3a25 0%, #de7d34 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 18px 35px rgba(187, 58, 37, 0.18);
}

.hanson-form-shell .wpcf7-spinner {
    margin-top: 14px;
}

.hanson-form-shell .wpcf7-response-output {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
}

body.page-id-1913 #primary.content-area {
    padding-top: 0;
    padding-bottom: 0;
}

body.page-id-1913 .site-main > .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

body.page-id-1913 .entry-content > .hanson-product-shell {
    display: block;
}

body.page-id-1913 .entry-content > .hanson-product-shell > .hanson-product-hero-home {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hanson-product-hero-home {
    display: grid;
    grid-template-columns: 57% 43%;
    gap: 0;
    padding: 0 150px;
    background-image: url("https://hansonmaterial.com/wp-content/uploads/2024/08/bg-1.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hanson-product-hero-home__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 60px;
}

.hanson-product-hero-home__eyebrow {
    margin: 0;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    line-height: 29px;
    text-transform: uppercase;
}

body.page:not(.home) .entry-content .hanson-product-hero-home h1 {
    max-width: 10.5ch;
    margin: 5px 0 10px;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(4rem, 5.8vw, 5.4rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: capitalize;
    letter-spacing: -0.04em;
}

body.page:not(.home) .entry-content .hanson-product-hero-home p:not(.hanson-product-hero-home__eyebrow) {
    max-width: 720px;
    margin: 0;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
}

.hanson-product-hero-home__actions {
    margin-top: 60px;
}

.hanson-product-hero-home__media {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hanson-product-hero-home__media img {
    display: block;
    width: 85%;
    margin-top: 20px;
}

.hanson-homeflow-section,
.hanson-homeflow-band,
.hanson-homeflow-contact {
    width: 100%;
}

.hanson-homeflow-section__inner,
.hanson-homeflow-band__inner,
.hanson-homeflow-contact__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.hanson-homeflow-section--light {
    padding: 120px 0;
}

.hanson-homeflow-section__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.hanson-homeflow-section__intro h2,
.hanson-homeflow-band__copy h2,
.hanson-homeflow-contact__copy h2 {
    margin: 0 0 22px;
    color: #121315;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hanson-homeflow-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: #f55b1f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hanson-homeflow-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.hanson-homeflow-kicker--light {
    color: #ffffff;
}

.hanson-homeflow-section__intro p,
.hanson-homeflow-band__copy p,
.hanson-homeflow-contact__copy p,
.hanson-homeflow-accordion p,
.hanson-homeflow-contact__panel p,
.hanson-homeflow-contact__panel li {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

.hanson-homeflow-section__intro .theme-btn {
    margin-top: 34px;
}

.hanson-homeflow-feature-list {
    display: grid;
}

.hanson-homeflow-feature {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 24px;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid #d4dced;
}

.hanson-homeflow-feature:last-child {
    border-bottom: 1px solid #d4dced;
}

.hanson-homeflow-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #fcede8;
    color: #f55b1f;
    font-size: 18px;
    font-weight: 700;
}

.hanson-homeflow-feature__body h3,
.hanson-homeflow-mini-item h3,
.hanson-homeflow-contact__panel h3,
.hanson-homeflow-contact__note strong {
    margin: 0 0 10px;
    color: #121315;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.hanson-homeflow-feature__body p,
.hanson-homeflow-mini-item p {
    margin: 0;
}

.hanson-homeflow-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: linear-gradient(90deg, #f55b1f 0%, #ff6d2a 100%);
}

.hanson-homeflow-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 56px;
    padding-bottom: 56px;
}

.hanson-homeflow-band__copy h2 {
    margin-bottom: 0;
    color: #ffffff;
    max-width: 620px;
}

.hanson-homeflow-band__copy p:not(.hanson-homeflow-kicker) {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.8;
}

.hanson-homeflow-section--faq {
    padding: 120px 0;
}

.hanson-homeflow-section__inner--faq {
    align-items: start;
}

.hanson-homeflow-mini-list {
    display: grid;
    gap: 28px;
    margin-top: 38px;
}

.hanson-homeflow-mini-item {
    padding-top: 26px;
    border-top: 1px solid #d4dced;
}

.hanson-homeflow-accordion details {
    border-top: 1px solid #d4dced;
    padding: 24px 0;
}

.hanson-homeflow-accordion details:last-child {
    border-bottom: 1px solid #d4dced;
}

.hanson-homeflow-accordion summary {
    cursor: pointer;
    list-style: none;
    color: #121315;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}

.hanson-homeflow-accordion summary::-webkit-details-marker {
    display: none;
}

.hanson-homeflow-accordion summary::after {
    content: "+";
    float: right;
    color: #121315;
    font-size: 22px;
    line-height: 1;
}

.hanson-homeflow-accordion details[open] summary::after {
    content: "−";
}

.hanson-homeflow-accordion p {
    margin: 18px 0 0;
    padding-right: 28px;
}

.hanson-homeflow-contact {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
        linear-gradient(rgba(18, 19, 21, 0.82), rgba(18, 19, 21, 0.82)),
        url("https://hansonmaterial.com/wp-content/uploads/2024/08/cta-bg-1-1.jpg") center center / cover no-repeat;
}

.hanson-homeflow-contact__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 120px;
}

.hanson-homeflow-contact__panel {
    padding: 42px;
    background: #ffffff;
}

.hanson-homeflow-contact__panel ul {
    margin: 20px 0 34px;
    padding-left: 20px;
}

.hanson-homeflow-contact__copy h2,
.hanson-homeflow-contact__copy p,
.hanson-homeflow-contact__note strong,
.hanson-homeflow-contact__note span {
    color: #ffffff;
}

.hanson-homeflow-contact__note {
    display: grid;
    gap: 8px;
    margin-top: 34px;
}

.hanson-homeflow-contact__note span {
    font-size: 16px;
    line-height: 1.8;
}

body.page-id-1913 .hanson-hero--product {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
    gap: 28px;
    padding: 72px 56px;
    background:
        linear-gradient(120deg, rgba(18, 19, 21, 0.94) 0%, rgba(18, 19, 21, 0.76) 46%, rgba(51, 29, 19, 0.7) 100%),
        url("https://hansonmaterial.com/wp-content/uploads/2024/08/bg-1.jpg") center center / cover no-repeat;
}

body.page-id-1913 .hanson-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.page-id-1913 .hanson-hero--product .hanson-lead {
    max-width: 760px;
}

body.page-id-1913 .hanson-hero--product .hanson-actions {
    margin-top: 30px;
}

body.page-id-1913 .hanson-hero--product .hanson-button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

body.page-id-1913 .hanson-hero--product .hanson-button--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.hanson-hero-panel {
    align-self: end;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
}

.hanson-panel-label {
    display: inline-flex;
    margin: 0 0 16px;
    color: #f0c7ab;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

body.page:not(.home) .entry-content .hanson-hero-panel h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

body.page:not(.home) .entry-content .hanson-hero-panel p,
body.page:not(.home) .entry-content .hanson-hero-panel li {
    color: rgba(247, 243, 236, 0.88);
}

.hanson-list--light li::before {
    background: linear-gradient(135deg, #f0c7ab 0%, #de7d34 100%);
    box-shadow: 0 0 0 6px rgba(240, 199, 171, 0.12);
}

.hanson-band {
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(18, 19, 21, 0.96) 0%, rgba(43, 29, 24, 0.96) 100%);
    box-shadow: 0 24px 55px rgba(18, 19, 21, 0.12);
}

.hanson-band .hanson-stat-grid {
    gap: 16px;
}

.hanson-band .hanson-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hanson-band .hanson-stat strong {
    color: #ffffff;
}

body.page:not(.home) .entry-content .hanson-band .hanson-stat span {
    display: block;
    color: rgba(247, 243, 236, 0.82);
    font-size: 15px;
    line-height: 1.65;
}

.hanson-showcase,
.hanson-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.hanson-card--feature {
    padding: 38px;
}

.hanson-card--accent {
    background:
        linear-gradient(150deg, rgba(251, 245, 236, 0.98) 0%, rgba(255, 248, 240, 0.98) 100%),
        radial-gradient(circle at top right, rgba(222, 125, 52, 0.16), transparent 30%);
}

.hanson-card--dark {
    background: linear-gradient(135deg, rgba(18, 19, 21, 0.98) 0%, rgba(32, 35, 39, 0.95) 100%);
    border-color: rgba(255, 255, 255, 0.05);
}

body.page:not(.home) .entry-content .hanson-card--dark h2,
body.page:not(.home) .entry-content .hanson-card--dark h3,
body.page:not(.home) .entry-content .hanson-card--dark p,
body.page:not(.home) .entry-content .hanson-card--dark li {
    color: #f7f3ec;
}

.hanson-card--dark .hanson-panel-label {
    color: #f0c7ab;
}

.hanson-proof-list {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.hanson-proof-list strong {
    display: block;
    margin-bottom: 6px;
    color: #121315;
    font-size: 1.05rem;
    font-weight: 800;
}

.hanson-proof-list p {
    margin: 0;
}

.hanson-cta--product {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: center;
}

.hanson-cta-proof {
    padding: 24px;
    border-radius: 24px;
    background: rgba(18, 19, 21, 0.04);
}

body.page:not(.home) .entry-content .hanson-cta-proof h3 {
    margin: 0 0 12px;
}

@media (max-width: 991px) {
    .hanson-hero,
    .hanson-card,
    .hanson-cta,
    .hanson-form-shell {
        padding: 24px;
        border-radius: 22px;
    }

    body.page-id-1913 .hanson-hero--product,
    .hanson-product-hero-home,
    .hanson-homeflow-section__inner,
    .hanson-homeflow-contact__inner {
        grid-template-columns: 1fr;
    }

    .hanson-grid,
    .hanson-grid--three,
    .hanson-stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.page:not(.home) #primary.content-area {
        padding-top: 36px;
        padding-bottom: 56px;
    }

    .hanson-hero h1 {
        max-width: none;
    }

    .hanson-actions {
        flex-direction: column;
    }

    .hanson-button {
        width: 100%;
    }

    body.page-id-1913 .hanson-hero--product {
        padding: 34px 24px;
    }

    .hanson-product-hero-home {
        padding: 60px 15px 0;
    }

    .hanson-product-hero-home__copy {
        padding: 0;
    }

    body.page:not(.home) .entry-content .hanson-product-hero-home h1 {
        max-width: 11ch;
        font-size: clamp(3.5rem, 12vw, 4.6rem);
    }

    body.page:not(.home) .entry-content .hanson-product-hero-home p:not(.hanson-product-hero-home__eyebrow) {
        font-size: 18px;
        line-height: 1.55;
    }

    .hanson-product-hero-home__actions {
        margin-top: 30px;
    }

    .hanson-product-hero-home__media {
        justify-content: center;
    }

    .hanson-product-hero-home__media img {
        width: min(100%, 340px);
        margin-top: 24px;
    }

    .hanson-homeflow-section--light,
    .hanson-homeflow-section--faq,
    .hanson-homeflow-contact__inner {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hanson-homeflow-band__inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .hanson-homeflow-feature {
        grid-template-columns: 72px 1fr;
        gap: 18px;
        padding: 24px 0;
    }

    .hanson-homeflow-feature__icon {
        width: 56px;
        height: 56px;
        font-size: 15px;
    }

    .hanson-homeflow-accordion summary {
        padding-right: 26px;
        font-size: 16px;
    }

    .hanson-homeflow-contact__panel {
        padding: 28px;
    }

    body.home .elementor-element-1c56d19 {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.home .elementor-element-431c147 .elementor-heading-title {
        max-width: 220px;
        font-size: 12px !important;
        line-height: 20px !important;
        letter-spacing: 0.18em !important;
    }

    body.home .elementor-element-cd9dbd5 .elementor-heading-title {
        max-width: 280px;
        font-size: 56px !important;
        line-height: 0.98 !important;
    }

    body.home .elementor-element-31d1deb .elementor-heading-title {
        max-width: 280px;
        font-size: 18px !important;
        line-height: 1.55 !important;
    }
}
