:root {
    --hr-primary-blue: #0b2545;
    --hr-accent-green: #20c997;
    --hr-text-dark: #333333;
    --hr-text-light: #ffffff;
    --hr-bg-gray: #f8f9fa;
    --hr-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.health-report-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--hr-text-dark);
    line-height: 1.6;
    background: #ffffff;
}

.health-report-wrapper h1, 
.health-report-wrapper h2, 
.health-report-wrapper h3 {
    color: var(--hr-primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.health-report-wrapper p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.hr-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.hr-section {
    padding: 80px 0;
}

.hr-bg-light {
    background-color: var(--hr-bg-gray);
}

.hr-bg-dark {
    background-color: var(--hr-primary-blue);
    color: var(--hr-text-light);
}

.hr-bg-dark h1, .hr-bg-dark h2, .hr-bg-dark h3 {
    color: var(--hr-text-light);
}

.hr-btn {
    display: inline-block;
    background-color: var(--hr-accent-green);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.hr-btn:hover {
    background-color: #1aa179;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 201, 151, 0.4);
}

.hr-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hr-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hr-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--hr-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.hr-card:hover {
    transform: translateY(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hr-grid-2, .hr-grid-3 {
        grid-template-columns: 1fr;
    }
    .hr-section {
        padding: 50px 0;
    }
}
