.static-page {
    padding: 30px 0px;
    background-color: var(--neutral-color);
    color: var(--text-color-dark);
}
.static-page .custom-container{
    overflow: hidden;
}
.static-box {
    margin-bottom: 30px;
}
.static-image-box img {
    max-width: 100%;
    margin: 0;
}
.static-page h2 {
    font-size: var(--fs-h2);
    font-weight: 600;
    margin-bottom: 15px;
}
.static-page h3 {
    font-size: var(--fs-h3);
    font-weight: 600;
    margin-bottom: 15px;
}
.static-page h5 {
    font-size: var(--fs-h5);
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 12px;
}
.static-page p {
    font-family: var(--font-primary) !important;
    font-size:16px;
    color: var(--text-color-dark);
    margin: 0px 0px 10px !important;
    line-height: 26px;
}
.about-us-main-content {
    display: flex;
    gap: 20px;
}
.static-image-box {
    display: block;
    width: 510px;
    flex: none;
}
.about-us-main-content .content {
    flex: auto;
}

/*----------------- Statement Block ---------------*/
.statement-block {
    background-color: #ededed;
    padding: 40px 0px;
}
.statement-block-flex {
    display: flex;
    gap: 20px;
}
.mission-statement {
    flex: 1;
    background: #fff;
    padding: 0px;
}
.mission-statement h4 {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px;
    margin: 0px;
}
.mission-statement p {
    padding: 15px;
}
/* --------- Core Value --------- */
.core-value {
    padding: 40px 0px;
}
.core-values-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px 0px;
    flex-wrap: wrap;
}
.core-value-box {
    width: 400px;
    background: #f4f4f4;
    padding: 15px;
    box-shadow: 0px 0px 3px #ccc;
}
.core-head {
    display: flex;
    align-items: center;
    gap: 10px;
}
.core-icon {
    background-color: var(--primary-color);
    padding: 8px;
    width: 60px;
    height: 60px;
    border-radius: 5px;
}
.core-icon img {
    max-width: 100%;
}
.core-head h4 {
    font-size: 22px;
    color: #242424;
    font-weight: 600;
    margin: 0;
}
.core-content {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #d3d3d3;
}
.our-story {
    position: relative;
    background-image: url('https://haulproparts.blob.core.windows.net/haulproparts/Images/about-us-black-bg.webp');
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #fff;
    padding: 40px 0px;
}
.our-story:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111111;
    opacity: 0.9;
    z-index: 1;
}
.our-story .custom-container{
    position: relative;
    z-index: 3;
}
.our-story h3 {
    color: #fff;
}
.our-story p {
    color: #ececec;
}
.product-philosophy {
    padding: 40px 0px 20px;
}


@media (max-width:1200px){
    .statement-block-flex {
        flex-direction: column;
    }
}
@media (max-width:771px){
    .about-us-main-content {
        flex-direction: column;
    }
    .static-image-box {
        width: 100%;
    }
}