    /* Jiinubi Legal Master Styles */
:root {
    --accent-color:#28a745; /* Replace with your specific hex code */
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

.WordSection1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

/* Section Spacing */
 section {
    margin-bottom: 2.5rem;
}

/* Typography */
 h1 {
    font-size: 2.25rem;
    font-weight: 800;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
}

 h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

 p, li {
    margin-bottom: 1rem;
    text-align: justify;
}

/* THE ANIMATED LIFT LINK */
 a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block; /* Required for transform */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

 a:hover {
    color: var(--accent-color);
    transform: translateY(-3px); /* The "Lift" effect */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Optional: Underline grow effect */
 a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease-in-out;
}

 a:hover::after {
    width: 100%;
}

/* Meta info */
.last-revised {
    font-style: italic;
    color: var(--text-muted);
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}