body {
        margin: 0;
        padding: 0;
        font-family: "Lora", sans-serif;
        background: #fafafa;
    }

    /* ============================================================
       MAIN SECTION (Images + Right Content)
    ============================================================ */

    .match-aura-pp {
        max-width: 1300px;
        margin: 40px auto;
        padding: 20px;
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    /* LEFT IMAGES GRID */
    .match-aura-pp-left {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .match-aura-pp-left img {
        width: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .match-aura-pp-left img:nth-child(1) { height: 330px; }
    .match-aura-pp-left img:nth-child(2) { height: 200px; }
    .match-aura-pp-left img:nth-child(3) { height: 260px; }
    .match-aura-pp-left img:nth-child(4) { height: 230px; }

    /* RIGHT TEXT CONTENT */
    .match-aura-pp-right h2 {
        font-size: 2.3rem;
        color: #990000;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .match-aura-pp-right h3 {
        font-size: 2.8rem;
        color: #b3001b;
        margin: 10px 0;
        line-height: 1.2;
        font-weight: 800;
    }

    .match-aura-pp-right p {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.7;
        margin: 15px 0;
    }

    .match-aura-pp-right strong {
        color: #990000;
    }

    /* ============================================================
       CONTACT ICON STRIP — INSIDE RIGHT SECTION
    ============================================================ */

    .match-aura-pp-quick-contacts {
        margin-top: 20px;
        display: flex;
        justify-content: flex-start;
        gap: 50px;
    }

    .match-aura-pp-qc-item {
        display: flex;
        align-items: center;
        gap: 14px;
        text-decoration: none;
    }

    .match-aura-pp-qc-badge {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgb(71, 2, 2);
        box-shadow: 0 0 0 8px #e9e5e1;
    }

    .match-aura-pp-qc-texts .label {
        font-size: 0.95rem;
        color: #7a7f86;
    }

    .match-aura-pp-qc-texts .number {
        font-size: 1.05rem;
        font-weight: 800;
        color: #b30000;
    }

    .match-aura-pp-qc-item:hover .match-aura-pp-qc-badge {
        transform: translateY(-1px);
        transition: 0.25s ease;
        box-shadow: 0 2px 0 8px #e9e5e1, 0 8px 16px rgba(0,0,0,0.12);
    }

    /* Responsive (put contacts centered on mobile) */
    @media (max-width: 640px) {
        .match-aura-pp-quick-contacts {
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
    }

    /* ============================================================
       CONTACT FORM (Yellow Container)
    ============================================================ */

    .match-aura-pp-contact {
        background: #371a5b;
        padding: 15px;
        border-radius: 18px;
        max-width: 1100px;
        margin: 40px auto;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .match-aura-pp-contact-inner {
        background: #fff;
        padding: 12px;
        border-radius: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr auto;
        gap: 15px;
        align-items: center;
    }

    .match-aura-pp-input {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 10px 12px;
    }

    .match-aura-pp-input svg {
        width: 22px;
        height: 22px;
        fill: #b30000;
        margin-right: 10px;
    }

    .match-aura-pp-input input,
    .match-aura-pp-input select {
        border: none;
        outline: none;
        width: 100%;
        background: transparent;
        font-size: 1rem;
    }

    .match-aura-pp-btn {
        background: #b30000;
        color: #fff;
        padding: 15px 25px;
        border: none;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 12px;
        cursor: pointer;
        transition: 0.3s;
    }

    .match-aura-pp-btn:hover {
        background: #8d0000;
    }

    @media (max-width: 900px) {
        .match-aura-pp-contact-inner {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 600px) {
        .match-aura-pp {
            grid-template-columns: 1fr;
        }
        .match-aura-pp-contact-inner {
            grid-template-columns: 1fr;
        }
        .match-aura-pp-btn {
            width: 100%;
        }
    }