/* RIG Page Styles */
.rig-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Lora', serif;
}

/* Health Profile Section */
.health-profile-section {
    background: linear-gradient(135deg, var(--beige-white) 0%, #f8f6f0 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 70, 139, 0.1);
}

.health-profile-section h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.health-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.metric-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 70, 139, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 70, 139, 0.15);
}

.metric-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon img {
    width: 35px;
    height: 35px;
}

.metric-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.metric-card p {
    color: var(--dark-blue);
    opacity: 0.7;
    font-size: 0.9rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    color: var(--dark-blue);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 70, 139, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 70, 139, 0.4);
}

/* Info Section */
.info-section {
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 70, 139, 0.1);
    border-left: 5px solid var(--light-blue);
}

.info-card h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-blue);
    margin-bottom: 1.2rem;
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* Reference Section */
.reference-section {
    margin-bottom: 3rem;
}

.reference-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.reference-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reference-list li {
    background: white;
    border-left: 5px solid var(--dark-blue);
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 70, 139, 0.08);
    transition: box-shadow 0.3s ease;
}

.reference-list li:hover {
    box-shadow: 0 8px 24px rgba(0, 70, 139, 0.12);
}

.reference-list a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Merriweather', serif;
}

.reference-list a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: var(--dark-blue);
    opacity: 0.6;
    font-family: 'Merriweather', serif;
    border-top: 1px solid #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .health-profile-section {
        padding: 2rem 1rem;
    }

    .info-card {
        padding: 2rem 1rem;
    }

    .metric-card {
        padding: 1rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .metric-icon {
        width: 50px;
        height: 50px;
    }

    .metric-icon img {
        width: 28px;
        height: 28px;
    }

    .health-profile-section h1 {
        font-size: 2.2rem;
    }

    .info-card h2 {
        font-size: 1.8rem;
    }

    .reference-section h2 {
        font-size: 2rem;
    }
}
