#location-mobile__version,
#navbar-postcode,
.navbar-search {
    display: none !important;
}
.feature-title,
.story-title,
.hero-title {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1e1e1e;
}
.feature-title span,
.story-title span,
.hero-title span {
    color: var(--primary-500);
}
body {
    background-color: var(--white) !important;
}

/* start: Hero */
.hero-section {
    padding: 160px 0;
    background-image: url(/images/about-hero.png);
    background-size: cover;
    background-position: center;
}
.hero-wrapper {
    max-width: 540px;
}
.hero-subtitle {
    font-size: 34px;
    color: #625b5b;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.2;
}
.hero-subtitle span {
    font-weight: 600;
}
.hero-description {
    font-size: 16px;
    color: #1e1e1e;
    margin-bottom: 28px;
    line-height: 1.6;
}
.hero-list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style-type: none;
}
.hero-list-item {
    font-size: 16px;
    color: #625b5b;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.hero-list-item::before {
    content: "";
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background-color: var(--primary-500);
    border-radius: var(--rounded-full);
}
/* end: Hero */

/* start: Story */
.story-section {
    padding: 140px 0;
}
.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 140px;
}
.story-image {
    position: relative;
    isolation: isolate;
}
.story-image::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid #000;
    transform: translate(-16px, 16px);
    z-index: -10;
}
.story-image-img {
    width: 100%;
    height: 680px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}
.story-image-content {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 12px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 200px;
}
.story-image-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}
.story-image-text {
    font-size: 16px;
    color: #d2d2d2;
}
.story-description {
    color: #585858;
    font-size: 16px;
    margin-bottom: 32px;
}
.story-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.story-list-item {
    display: flex;
    gap: 16px;
}
.story-list-item-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-50);
    color: var(--primary-500);
    border-radius: var(--rounded-full);
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}
.story-list-item-title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: #1e1515;
    margin-bottom: 12px;
}
.story-list-item-text {
    font-size: 16px;
    color: #585858;
}
/* end: Story */

/* start: Feature */
.feature-section {
    padding: 140px 0;
}
.feature-title {
    text-align: center;
}
.feature-description {
    text-align: center;
    color: #585858;
    max-width: 720px;
    margin: 0 auto;
}
.feature-wrapper {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}
.feature-item-image {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    margin-bottom: 24px;
    border-radius: 8px;
}
.feature-item-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
    padding: 0 24px;
}
.feature-item-text {
    font-size: 16px;
    color: #585858;
    text-align: center;
    padding: 0 24px;
}
/* end: Feature */

/* start: CTA */
.cta-section {
    padding: 64px 0;
    background-color: var(--primary-500);
    text-align: center;
}
.cta-title {
    font-size: 34px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-title span {
    font-weight: 600;
}
.cta-description {
    color: var(--white);
    max-width: 620px;
    margin: 0 auto 48px;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 44px;
    color: var(--primary-500);
    background-color: var(--white);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}
.cta-button:hover {
    background-color: #f3f3f3;
}
/* end: CTA */

@media screen and (max-width: 1200px) {
    .story-wrapper {
        gap: 48px;
    }
}
@media screen and (max-width: 991px) {
    .hero-section {
        position: relative;
        isolation: isolate;
        background-position: right center;
    }
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(255, 255, 255, 0.8);
        z-index: -10;
    }
    .hero-wrapper {
        max-width: unset;
    }

    .story-wrapper {
        grid-template-columns: 1fr;
    }
    .story-image {
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }
    .story-image-img {
        height: 500px;
    }

    .feature-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}
@media screen and (max-width: 575px) {
    .story-section,
    .feature-section,
    .hero-section {
        padding: 80px 0;
    }
    .hero-subtitle {
        font-size: 24px;
    }
    .feature-title,
    .story-title,
    .hero-title {
        font-size: 36px;
    }
    .hero-list {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .story-list-item-title {
        font-size: 18px;
    }
    .story-list-item-text {
        font-size: 14px;
    }
    .story-list-item-number {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .feature-wrapper {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 24px;
    }
}
