body.about-body {
    background-color: #ECECEC;
}

.psa-page-wrapper {
    padding: 0 16px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.psa-white-container {
    background: #ffffff;
    width: 100%;
    border-radius: 0 0 100px 100px;
    padding: 0 16px 50px;
    text-align: center;
}

.psa-hero-image {
    background: url('/Images/order.png') center center / cover no-repeat;
    height: auto;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    margin: auto;
    width: 85%;
}

.psa-hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    width: 100%;
}

    .psa-hero-overlay::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.25);
        z-index: -1;
        border-radius: inherit;
    }

.psa-hero-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 95%;
}

.psa-hero-logo img {
    width: 70%;
    float: left;
}

.psa-hero-title {
    margin: auto;
    text-align: center;
    font-size: 4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: #f2f2f2;
    width: 100%;
}

.psa-hero-description {
    margin: 24px auto;
    width: 90%;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 4vw, 20px);
    line-height: 1.3;
    color: #000000;
}

.psa-hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.psa-badge {
    width: 18%;
    padding: 14px 0;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'General Sans', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    font-style: italic;
    background: linear-gradient(to bottom right, #60BD71 0%, #2C5734 50%) bottom right / 51% 51% no-repeat, linear-gradient(to bottom left, #60BD71 0%, #2C5734 50%) bottom left / 51% 51% no-repeat, linear-gradient(to top left, #60BD71 0%, #2C5734 50%) top left / 51% 51% no-repeat, linear-gradient(to top right, #60BD71 0%, #2C5734 50%) top right / 51% 51% no-repeat;
}

/* KEY BENEFITS SECTION */
.psa-key-benefits {
    padding: clamp(32px, 8vw, 48px) 16px clamp(40px, 10vw, 56px);
    text-align: center;
    width: 100%;
}

.psa-key-benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: clamp(20px, 5vw, 26px);
    color: #2C5734;
    margin-bottom: clamp(24px, 6vw, 32px);
    text-transform: uppercase;
    width: 100%;
}

.psa-key-benefits-list {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 3vw, 20px);
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.psa-benefit-card {
    position: relative;
    width: 18%;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    background: linear-gradient(180deg, #4C9C2E 0%, #1A3610 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #ffffff;
    padding: 10px;
    box-sizing: border-box;
}

.psa-benefit-icon-circle i.fa-duotone {
    font-size: clamp(32px, 10vw, 40px);
    --fa-primary-color: #E9FFE9;
    --fa-secondary-color: #3E8F4A;
    --fa-secondary-opacity: 0.85;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.psa-benefit-card p {
    font-family: 'General Sans', sans-serif;
    font-style: oblique;
    font-weight: 700;
    font-size: clamp(10px, 3vw, 12px);
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
}

/* SECTION WRAPPER */
.psa-hub-wrapper {
    padding: 48px 16px;
    display: flex;
    justify-content: center;
}

.psa-hub-card {
    background: #ffffff;
    width: 90%;
    border-radius: 100px;
    padding: 36px 35px 0;
    text-align: center;
}

.psa-hub-title {
    font-family: 'General Sans', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: #2C5734;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.psa-hub-desc {
    font-family: 'General Sans', sans-serif;
    font-size: 14px;
    margin: 30px auto 0;
    color: #000;
    font-weight: 500;
}

.psa-hub-diagram {
    position: relative;
    width: min(400px, 100%);
    aspect-ratio: 4 / 3;
    margin: auto;
}

.psa-hub-star {
    position: relative;
    width: clamp(140px, 40vw, 200px);
    height: clamp(170px, 48vw, 240px);
    margin: clamp(24px, 6vw, 40px) auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .psa-hub-star::before,
    .psa-hub-star::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, #62CA3C, #2D5A34);
        z-index: 0;
    }

    .psa-hub-star::before {
        clip-path: polygon(50% 0%, 100% 75%, 0% 75%);
    }

    .psa-hub-star::after {
        clip-path: polygon(0% 25%, 100% 25%, 50% 100%);
    }

.psa-hub-text {
    font-family: 'General Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 3.5vw, 18px);
    font-style: italic;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    z-index: 2;
}

.psa-node {
    position: absolute;
    width: 9%;
    height: 7%;
    background: radial-gradient(circle at top, #60BD71, #2C5734);
    border-radius: 50%;
    z-index: 3;
}

    .psa-node.top {
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .psa-node.top-right {
        top: 50px;
        right: -10px;
    }

    .psa-node.bottom-right {
        bottom: 50px;
        right: -10px;
    }

    .psa-node.bottom {
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .psa-node.bottom-left {
        bottom: 50px;
        left: -10px;
    }

    .psa-node.top-left {
        top: 50px;
        left: -10px;
    }

.psa-hub-label {
    position: absolute;
    font-family: 'General Sans', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
}

    .psa-hub-label.left {
        left: -5px;
        top: 15%;
    }

    .psa-hub-label.right {
        right: 25px;
        top: 15%;
    }

    .psa-hub-label.bottom-left {
        bottom: 100px;
        left: 1%;
    }

    .psa-hub-label.bottom-right {
        bottom: 100px;
        right: 4%;
    }

/*How wrapper*/
.psa-how-wrapper {
    padding: 56px 16px 64px;
    text-align: center;
}

.psa-how-title {
    font-family: 'General Sans', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #2C5734;
    margin-bottom: 36px;
    text-transform: uppercase;
}

.psa-how-steps {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.psa-how-step {
    width: 24%;
    position: relative;
}

.psa-step-green {
    padding: 16px 15px 60px;
    text-align: left;
    color: #ffffff;
    background: linear-gradient(0deg, #4C9C2E 0%, #2C5734 100%);
    clip-path: polygon(0% 0%, 50% 0%, 75% 50%, 50% 100%, 0% 100%, 0% 25%);
    border-radius: 10px;
}

.psa-step-no {
    font-family: 'General Sans', sans-serif;
    font-size: 13px;
    display: block;
    font-style: italic;
    margin-bottom: 8px;
}

.psa-step-title {
    font-family: 'General Sans', sans-serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1.25;
    text-transform: uppercase;
}

    .psa-step-title b {
        font-style: normal;
    }

.psa-step-grey {
    margin-right: 35px;
    margin-top: -58px;
    padding: 45px 0px 45px 60px;
    background: linear-gradient(180deg, #D9D9D9 0%, #737373 100%);
    border-radius: 16px;
    font-family: 'General Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #000000;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    clip-path: polygon( 25% 50%, 52% 0%, 100% 0%, 100% 100%, 52% 100%, 25% 50% );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
    font-style: normal;
}

.psa-step-grey-text {
    max-width: 95px;
    line-height: 1.35;
    word-break: normal;
    text-wrap: balance;
}

.psa-how-footer {
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    color: #2C5734;
    text-transform: uppercase;
}

/*Contact Wrapper*/
.psa-contact-wrapper {
    padding: 0px 16px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.psa-contact-card {
    background: #ffffff;
    width: 90%;
    border-radius: 45px 45px 0 0;
    padding: 32px 20px 36px;
    text-align: center;
}

.psa-contact-title {
    font-family: 'General Sans', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #2C5734;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-style: normal;
    width: 100%;
}

.psa-contact-subtitle {
    font-family: 'General Sans', sans-serif;
    font-size: 13px;
    margin-bottom: 28px;
    color: #000;
    font-style: normal;
    font-weight: 500;
    width: 100%;
}

.psa-contact-form {
    width: 70%;
    margin: 0 auto;
    text-align: left;
}

.psa-form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.psa-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
    flex: 1;
}

    .psa-form-group label {
        font-family: 'Satoshi', sans-serif;
        font-size: 11px;
        margin-bottom: 4px;
        color: #1B281B;
        text-overflow: ellipsis;
        font-style: normal;
        overflow: hidden;
    }

    .psa-form-group input {
        padding: 6px 8px;
        border-radius: 6px;
        border: 1px solid #2C5734;
        background: rgba(44, 87, 52, 0.20);
        font-family: 'Satoshi', sans-serif;
        font-size: 12px;
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%;
    }

.psa-form-footer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 16px;
    width: 100%;
}

.psa-submit-btn {
    background: #2C5734;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 50px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    font-style: normal;
}

.psa-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 10px;
    line-height: 1.35;
    color: #000;
    width: 100%;
}

    .psa-checkbox input {
        margin-top: 2px;
        flex-shrink: 0;
    }

    .psa-checkbox span {
        color: #000;
        font-family: 'Nunito Sans', sans-serif;
        font-size: 10px;
        font-weight: 300;
        line-height: 1.35;
    }

/*Responsive css*/
@media (max-width: 992px) {
    .psa-hero-image {
        width: 95%;
    }

    .psa-hero-logo img {
        width: 60%;
    }

    .psa-hero-header {
        width: 87%;
    }

    .psa-hero-title {
        font-size: 2.4rem;
    }

    .psa-hero-description {
        width: 95%;
        font-size: 18px;
    }

    .psa-badge {
        width: 30%;
        font-size: 14px;
    }

    .psa-benefit-card {
        width: 30%;
    }

    .psa-how-steps {
        gap: 20px;
        width: 100%;
    }

    .psa-how-step {
        width: 35%;
    }

    .psa-hub-title {
        font-size: 20px;
    }

    .psa-node {
        width: 7%;
        height: 6%;
    }

    .psa-hub-label {
        font-size: 11px;
    }

        .psa-hub-label.left {
            left: 15px;
            top: 15%;
        }

        .psa-hub-label.right {
            right: 40px;
            top: 15%;
        }

        .psa-hub-label.bottom-left {
            bottom: 100px;
            left: 6%;
        }

        .psa-hub-label.bottom-right {
            bottom: 100px;
            right: 8%;
        }

    .psa-contact-card {
        width: 95%;
    }

    .psa-contact-form {
        width: 85%;
    }

    .psa-contact-title {
        font-size: 20px;
    }

    .psa-contact-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .psa-white-container {
        padding: 0 20px 48px;
        border-radius: 0 0 72px 72px;
    }

    .psa-hero-image {
        width: 80%;
    }

    .psa-hero-overlay {
        padding: 30px 16px;
        align-items: center;
    }

    .psa-hero-header {
        width: 95%;
    }

    .psa-hero-title {
        font-size: 1.5rem;
    }

    .psa-hero-description {
        width: 100%;
        font-size: 16px;
    }

    .psa-hero-logo img {
        width: 75%;
    }

    .psa-badge {
        width: 50%;
        font-size: 13px;
        padding: 12px 0;
    }

    .psa-benefit-card {
        width: 50%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .psa-hub-diagram {
        width: 320px;
        height: 260px;
    }

    .psa-how-step {
        width: 100%;
        max-width: 260px;
    }

    .psa-form-row {
        flex-direction: column;
        gap: 0;
    }

    .psa-form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .psa-hub-wrapper {
        padding: 32px 12px;
    }

    .psa-hub-card {
        border-radius: 72px;
        padding: 24px 16px 16px;
    }

    .psa-hub-title {
        font-size: 18px;
    }

    .psa-node {
        width: 7%;
        height: 6%;
    }

    .psa-hub-label {
        font-size: 10px;
        text-align: center;
    }

        .psa-hub-label.left {
            left: -18px;
            top: 18%;
        }

        .psa-hub-label.right {
            right: 5px;
            top: 18%;
        }

        .psa-hub-label.bottom-left {
            bottom: 64px;
            left: -3%;
        }

        .psa-hub-label.bottom-right {
            bottom: 64px;
            right: 0%;
        }

    .psa-contact-card {
        border-radius: 30px 30px 0 0;
        padding: 28px 16px 32px;
    }

    .psa-contact-form {
        width: 100%;
    }

    .psa-form-row {
        flex-direction: column;
        gap: 12px;
    }

    .psa-submit-btn {
        padding: 8px 32px;
    }

    .psa-contact-title {
        font-size: 18px;
    }

    .psa-contact-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .psa-white-container {
        padding: 0 12px 40px;
        border-radius: 0 0 50px 50px;
    }

    .psa-hero-title {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .psa-hero-description {
        font-size: 14px;
    }

    .psa-hero-header::after {
        width: 92%
    }

    .psa-hero-logo img {
        width: 70%;
    }

    .psa-badge {
        width: 50%;
        font-size: 12px;
        padding: 10px 0;
    }

    .psa-hero-badges {
        gap: 8px;
    }

    .psa-hub-wrapper {
        padding: 24px 8px;
    }

    .psa-hub-card {
        border-radius: 35px;
        padding: 20px 12px 12px;
    }

    .psa-hub-diagram {
        max-width: 280px;
    }

    .psa-hub-star {
        width: 130px;
        height: 160px;
        margin: 20px auto;
    }

    .psa-hub-text,
    .psa-hub-desc {
        font-size: 12px;
    }

    .psa-node {
        width: 7%;
        height: 6%;
    }

        .psa-node.top {
            top: -6px;
        }

        .psa-node.bottom {
            bottom: -6px;
        }

        .psa-node.top-right {
            top: 35px;
            right: -6px;
        }

        .psa-node.bottom-right {
            bottom: 35px;
            right: -6px;
        }

        .psa-node.top-left {
            top: 35px;
            left: -6px;
        }

        .psa-node.bottom-left {
            bottom: 35px;
            left: -6px;
        }

    .psa-hub-label {
        font-size: 9px;
        text-align: center;
        line-height: 1.2;
    }

        .psa-hub-label.left {
            left: 10px;
            top: 13%;
        }

        .psa-hub-label.right {
            right: 30px;
            top: 13%;
        }

        .psa-hub-label.bottom-left {
            bottom: 130px;
            left: 5%;
        }

        .psa-hub-label.bottom-right {
            bottom: 130px;
            right: 8%;
        }

    .psa-contact-card {
        border-radius: 20px 20px 0 0;
    }

    .psa-contact-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .psa-contact-subtitle {
        font-size: 10px;
        margin-bottom: 20px;
    }

    .psa-form-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .psa-submit-btn {
        width: 100%;
        padding: 10px;
    }

    .psa-checkbox span {
        font-size: 9px;
    }
}
