/* --- Happy Patients Collage Module (.hp- prefix) --- */
.hp-section {
    padding: 80px 0;
    background-color: #f4f7f9; /* Soft background to make the photo pop */
    text-align: center;
    clear: both;
}

.hp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hp-title {
    color: #002147;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hp-subtitle {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hp-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 33, 71, 0.15); /* Strong shadow for depth */
    border: 4px solid #fff; /* Polaroid/Frame effect */
}

.hp-image {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Google-Style Reviews Module (.rv- prefix) --- */
.rv-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.rv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rv-header {
    text-align: center;
    margin-bottom: 60px;
}

.rv-header h2 {
    color: #002147;
    font-size: 2.2rem;
    font-weight: 700;
}

.rv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rv-card {
    background: #fdfdfd;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.rv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.rv-stars {
    color: #FF9900; /* Google Gold */
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.rv-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
}

.rv-author-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.rv-avatar {
    width: 45px;
    height: 45px;
    background-color: #002147;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.rv-author-info {
    display: flex;
    flex-direction: column;
}

.rv-name {
    font-weight: 700;
    color: #002147;
    font-size: 1rem;
}

.rv-verified {
    font-size: 0.75rem;
    color: #28a745;
    font-weight: 700;
    text-transform: uppercase;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hp-title, .rv-header h2 { font-size: 1.8rem; }
}