﻿* {
    box-sizing: border-box;
}

.ppheader_body {
    margin: 0;
    background: #ffffff;
}

.demo-wrapper {
    padding: 10px 30px 10px 30px;
}

.pp-header {
    height: 130px;
    width: 100%;
    background: #ffffff;
}

.pp-header__inner {
    min-height: 125px;
    padding: 16px 30px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    /*
    padding: 10px 30px 0px 0px;
    width: 990px;
    margin-left: auto;
    margin-right: auto;
    */
}

.pp-header__logo-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 auto;
}

    /* Updated selector to cleanly support actual images instead of just placeholders */
    .pp-header__logo-section img {
        max-width: 400px;
        max-height: 120px;
        object-fit: contain;
        display: block;
    }

.pp-header__contact {
    flex: 0 0 260px;
    text-align: right;
    color: #000000;
    font-size: 12px;
    line-height: 1.35;
}

    .pp-header__contact h3 {
        margin: 0 0 8px 0;
        font-size: 13px;
        line-height: 1.2;
        font-weight: 700;
    }

    .pp-header__contact p {
        margin: 0;
        font-size: 11px;
        line-height: 1.35;
    }

/* Responsive Styles */
@media screen and (max-width: 767px) {
    .demo-wrapper {
        padding: 0;
        width: auto;
        margin: 20px auto 20px auto;
    }

    .pp-header {
        height: 140px;
        border: 1px solid #dddddd;
    }

    .pp-header__inner {
        min-height: 125px;
        padding: 16px 30px 0px 0px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
    }

    .pp-header__logo-section {
        justify-content: center;
        align-items: flex-start;
        flex: 0 0 auto;
    }

        .pp-header__logo-section img {
            max-width: 245px;
            max-height: 60px;
        }

    .pp-header__contact {
        margin-top: 10px;
        flex: 0 0 auto;
        min-width: 145px;
        text-align: center;
    }

        .pp-header__contact h3 {
            margin-bottom: 12px;
            font-size: 13px;
        }

        .pp-header__contact p {
            font-size: 12px;
            line-height: 1.35;
        }
}
