/* Hide original h1 and p text */
.header-title,
.header-text {
    visibility: hidden;
    position: relative;
}

/* Add new custom text to the <h1> */
.header-title::after {
    content: "Buy & Sell Office, Windows Keys, Anti Virus & More";
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff; /* Change as needed */
    font-size: 36px; /* Adjust as per design */
    font-weight: bold;
    width: 100%;
}

/* Add new custom text to the <p> */
.header-text::after {
    content: "Windows & Office Licenses, Quick Heal, Net Protector Antivirus & More";
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    color: #dddddd; /* Adjust as needed */
    font-size: 18px;
    font-weight: normal;
    width: 100%;
}