.hph-section * {
    box-sizing: border-box;
}

.hph-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 6% 0px 0px;
    background: radial-gradient(
        circle at top right,
        #f7d9f2 0%,
        #ffffff 45%,
        #f4d7f0 100%
    );
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    color: #1f1f1f;
	width: 100%;
}
.hph-inner-section{
	max-width: 1400px;
	width: 100%;
	display: flex;
    align-items: center;
	margin: 0 auto;
	
}

/* Image */
.hph-section-image img {
    width: 100%;
    display: block;
	max-width: 80%;
}

/* Content */
.hph-section-content {
    max-width: 560px;
}

.hph-section-content h5 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 600;
	text-align: right;
}

.hph-section-content h1 {
    font-size: 58px;
    line-height: 1.1;
    margin: 0 0 22px;
    font-weight: 800;
}

.hph-section-content h1 span {
    color: #5b1c7d;
}

.hph-section-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 26px;
}

/* Pills */
.hph-section-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hph-section-tags span {
    background: rgba(255,255,255,0.85);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* CTA */
.hph-section-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: linear-gradient(135deg, #7b1fa2, #b04ae0);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(155, 58, 203, 0.35);
    transition: all 0.3s ease;
	width: fit-content;
	margin: auto 0 auto auto;
}

.hph-section-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(155, 58, 203, 0.5);
}

/* Reviews */
.hph-section-reviews {
    margin-top: 26px;
    font-size: 14px;
    color: #444;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hph-section {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }
    .hph-section-tags,
    .hph-section-reviews {
        justify-content: center;
    }
}
