:root {
    --dpo-red: #A12124;
    --dpo-dark-red: #8f171b;
    --dpo-bright-red: #d51d24;
    --dpo-gray: #625F5F;
    --dpo-bg: #fbf1df;
    --dpo-white: #ffffff;
    --dpo-light-gray: #efefef;
    --dpo-black: #222222;

    --dpo-subheader-top: 124px;
    --dpo-subheader-height: 54px;
}

/* ================================
   ABOUT PAGE
================================ */

body {
    font-family: 'Century Gothic', 'Poppins', Arial, sans-serif;
}

.dpo-about-page {
    background: var(--dpo-bg);
    color: var(--dpo-black);
    min-height: 100vh;
    font-family: 'Century Gothic', 'Poppins', Arial, sans-serif;
}

.dpo-about-main {
    padding: 16px 0 24px;
    background: var(--dpo-bg);
}

.dpo-about-container {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.dpo-about-page-title {
    color: var(--dpo-red);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 8px;
    text-align: left;
}

.dpo-about-line {
    width: 100%;
    border: 0;
    border-top: 2px solid #b8b8b8;
    margin: 0 0 10px;
}

.dpo-about-section {
    margin: 0 0 14px;
}

.dpo-about-section-title {
    width: 100%;
    box-sizing: border-box;
    background: var(--dpo-red);
    color: var(--dpo-white);
    padding: 7px 10px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 8px;
    text-align: left;
    text-transform: none;
    box-shadow: none;
}

.dpo-about-section-body {
    padding: 0 10px;
    font-size: 15px;
    line-height: 1.5;
    color: #4c4c4c;
}

.dpo-about-section-body p {
    margin: 0 0 8px;
}

.dpo-about-section-body ol {
    margin: 0;
    padding-left: 20px;
}

.dpo-about-section-body li {
    margin-bottom: 4px;
}


/* ================================
   RESPONSIVE
================================ */

@media screen and (max-width: 991px) {
   
      .container {
        justify-content: space-between !important;
    }

      .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.6) !important;
        color: #ffffff !important;
        margin: 8px 0 !important;
    }

      .navbar-toggler span {
        color: #ffffff !important;
        font-size: 24px !important;
        line-height: 1 !important;
    }

      .navbar-collapse {
        width: 100% !important;
        background: var(--dpo-red) !important;
        padding: 8px 0 14px !important;
    }

      .navbar-collapse.show,
      .navbar-collapse.collapsing {
        display: block !important;
    }

      .navbar-nav,
      .dpo-module-nav-list {
        width: 100% !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        min-height: auto !important;
    }

      .nav-link {
        width: 100% !important;
        padding: 10px 0 !important;
        line-height: 1.3 !important;
        font-size: 15px !important;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --dpo-subheader-top: 104px;
    }

    .dpo-about-container {
        max-width: 100%;
        padding: 0 18px;
    }


    .dpo-about-page-title {
        font-size: 20px;
    }

    .dpo-about-section-title {
        font-size: 21px;
    }

    .dpo-about-section-body {
        font-size: 13px;
        padding: 0 4px;
    }

}

@media screen and (max-width: 575px) {
    :root {
        --dpo-subheader-top: 94px;
    }

    .dpo-about-container {
        padding: 0 12px;
    }

  

    .dpo-about-section-title {
        font-size: 19px;
    }

}