/* =========================================
   1. CSS Variables & Configuration
   ========================================= */
:root {
    --bg: #FBEEC8;
    --paper: #fdf7e6;
    --text: #3a2a1a;
    --accent: #ba1a1a;
    --accent-2: #7a1111;
    --muted: #6b543d;
    --border: #d8c7a5;
    --serif: "Georgia", "Times New Roman", serif;
    --sans: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

/* =========================================
   2. Base Reset & Animations
   ========================================= */
* {
    box-sizing: border-box;
}

/* Floating Heart Animation */
@keyframes floatHeart {
    0% {
        opacity: 1;
        transform: translateY(0) scale(0.5) rotate(0deg);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-30px) scale(1.0) rotate(10deg);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0.8) rotate(-10deg);
    }
}

.floating-heart {
    position: absolute;
    pointer-events: none;
    z-index: 100;
    font-size: 24px;
    will-change: transform, opacity;
    animation: floatHeart 1.2s ease-out forwards;
    filter: drop-shadow(0 0 5px rgba(220, 20, 60, 0.6));
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .floating-heart {
        animation: none;
        opacity: 0;
        display: none;
    }
}

/* =========================================
   3. Layout & Page Structure
   ========================================= */
body .rpt-page {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
}

    /* Background Pattern Watermark */
    body .rpt-page::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/Rice_Owls.webp');
        background-repeat: space;
        background-size: 140px;
        opacity: 0.70;
        pointer-events: none;
        z-index: 0;
    }

/* Ensure content sits above the pattern */
.rpt-hero,
.rpt-section,
.rpt-footer {
    position: relative;
    z-index: 1;
}

/* =========================================
   4. Component Styles (Hero, Buttons, Card)
   ========================================= */
.rpt-hero {
    background: var(--paper);
    border-bottom: 4px double var(--border);
    padding: 3rem 1.5rem 2.5rem;
    text-align: center;
}

.rpt-hero__inner {
    max-width: 820px;
    margin: 0 auto;
}

.rpt-hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

.rpt-hero-heading {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
    color: var(--text);
    font-weight: bold;
}

.rpt-eyebrow {
    font-family: var(--serif);
    font-style: italic;
    color: var(--muted);
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
}

.rpt-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0.4rem 0;
    letter-spacing: 0.02em;
    color: var(--text);
}

.rpt-subtitle {
    margin: 0 auto 1.25rem;
    max-width: 720px;
    color: #3f3020;
    font-size: 1rem;
}

.rpt-btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 2px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.2s;
    font-size: 1rem;
    font-family: var(--sans);
}

.rpt-btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border-color: var(--accent-2);

}

    .rpt-btn--primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

.rpt-btn--ghost {
    background: transparent;
    color: var(--accent-2);
    border: 2px solid var(--accent-2);
}

    .rpt-btn--ghost:hover {
        background: rgba(186, 26, 26, 0.1);
    }

.rpt-section {
    padding: 2.75rem 1.25rem;
}

.rpt-container {
    max-width: 960px;
    margin: 0 auto;
    background: var(--paper);
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.rpt-heading {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 1rem;
    color: var(--text);
}

.rpt-about p,
.rpt-how p {
    margin: 0 0 1rem;
    color: var(--text);
}

.rpt-lead {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.rpt-steps {
    margin: 0 0 1rem 1.25rem;
    color: var(--text);
    padding-left: 0.5rem;
}

    .rpt-steps li {
        margin: 0.35rem 0;
    }

.rpt-note {
    color: var(--muted);
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

/* =========================================
   5. Form & Checklist Styles
   ========================================= */
.rpt-form {
    margin-top: 1rem;
}

.rpt-list {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 0;
    /* Removed columns - each question on its own row */
}

    .rpt-list li {
        padding: 0.5rem 0;
        line-height: 1.7;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .rpt-list label {
        display: flex;
        align-items: flex-start;
        cursor: pointer;
        font-size: 1rem;
        color: var(--text);
        width: 100%;
    }

    .rpt-list input[type="checkbox"] {
        margin-right: 0.75rem;
        margin-top: 0.2rem;
        accent-color: var(--accent-2);
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

.rpt-actions {
    margin-top: 2rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.rpt-results .rpt-container {
    text-align: center;
}

.rpt-scorecard {
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.rpt-score {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6vw, 3.4rem);
    color: var(--accent-2);
    padding: 0.4rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: #fffaf1;
    font-weight: bold;
}

.rpt-score-note {

    margin: 0;
    font-size: 1rem;
}
.rpt-score-notee {
    margin-top: 5px;
    font-size: 1rem;
    color: unset;
}

.rpt-share {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

/* =========================================
   6. Footer & Responsive Styles
   ========================================= */
.rpt-footer {
    padding: 2.5rem 1.25rem;
    background: var(--paper);
    border-top: 2px solid var(--border);
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0 auto;
}

.rpt-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rpt-footer-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rpt-footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rpt-footer h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--text);
    margin: 0 0 1rem;
    font-weight: bold;
    text-align: center;
}

.rpt-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

    .rpt-footer-links-list li {
        margin: 0;
        white-space: nowrap;
    }

.rpt-link {
    color: var(--accent-2);
    text-decoration: none;
    transition: color 0.2s ease;
}

    .rpt-link:hover {
        text-decoration: underline;
        color: var(--accent);
    }

.rpt-social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

.rpt-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-2);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
    font-size: 1.2rem;
}

    .rpt-social-icon:hover {
        transform: translateY(-2px);
        background: var(--accent);
    }

    .rpt-social-icon svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

.rpt-credit {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    color: #3a2a1a;
    margin: 2rem auto 0;
    text-align: center;
    font-weight:bold;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .rpt-hero-image {
        max-width: 90%;
    }

    .rpt-list li {
        margin: 0.85rem 0;
    }
}

@media (min-width: 720px) {
    .rpt-container {
        padding: 2rem 2rem;
    }

    .rpt-list {
        padding-left: 2rem;
    }



    .rpt-hero-image {
        max-width: 90%;
    }

    .rpt-footer-links-list {
        gap: 1.5rem;
    }

    .rpt-footer-sections {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 4rem;
    }

    .rpt-footer-section {
        align-items: flex-start;
    }

    .rpt-footer h3 {
        text-align: left;
    }

    .rpt-footer-links-list {
        flex-direction: row;
        align-items: center;
    }

    .rpt-social-icons {
        justify-content: flex-start;
    }

    .rpt-credit {
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .rpt-hero {
        padding: 3.5rem 1.5rem 3rem;
    }

    .rpt-container {
        padding: 2.25rem 2.5rem;
    }

    .rpt-list {
        padding-left: 2.5rem;
    }



        .rpt-list label {
            font-size: 1.05rem;
        }

    .rpt-hero-image {
        max-width: 95%;
    }

    .rpt-footer-sections {
        gap: 6rem;
    }
}

/* Social Icon Brand Colors */
.rpt-social-icon--facebook {
    background-color: #1877F2;
}

    .rpt-social-icon--facebook:hover {
        background-color: #166fe5;
    }

.rpt-social-icon--pinterest {
    background-color: #E60023;
}

    .rpt-social-icon--pinterest:hover {
        background-color: #ad081b;
    }

.rpt-social-icon--twitter {
    background-color: #1DA1F2;
}

    .rpt-social-icon--twitter:hover {
        background-color: #0c85d0;
    }

.rpt-social-icon--instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

    .rpt-social-icon--instagram:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

/* Romantic Micro-Animation */
/* Strict Body Margin Reset */
body {
    margin: 0;
}

@keyframes rose-glow {
    0% {
        text-shadow: none;
        color: var(--text);
    }

    50% {
        text-shadow: 0 0 10px rgba(186, 26, 26, 0.3);
        color: var(--accent-2);
    }

    100% {
        text-shadow: none;
        color: var(--text);
    }
}

@keyframes heart-shimmer {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.2);
    }

    100% {
        opacity: 0;
        transform: translateY(-50%) scale(1.5);
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.rpt-list label {
    position: relative;
    /* Context for pseudo-element */
}

    .rpt-list label span {
        display: inline-block;
        transition: color 0.3s ease;
        position: relative;
        z-index: 1;
    }

/* Checkbox Heartbeat */
.rpt-list input[type="checkbox"]:checked {
    animation: heartbeat 0.4s ease-out;
    accent-color: var(--accent-2);
    /* Ensure accent color fits theme */
}

    /* Trigger Animation on Text */
    .rpt-list input[type="checkbox"]:checked + span {
        animation: rose-glow 0.7s ease-out;
    }

        /* Heart Shimmer Decoration */
        .rpt-list input[type="checkbox"]:checked + span::after {
            content: "";
            position: absolute;
            left: 0;
            /* Start from left of text */
            top: 50%;
            width: 100%;
            /* Cover width of text approx or just a spot */
            height: 100%;
            /* Create a subtle radial flash */
            background: radial-gradient(circle, rgba(186, 26, 26, 0.15) 0%, transparent 70%);
            transform: translateY(-50%);
            animation: heart-shimmer 0.7s ease-out forwards;
            pointer-events: none;
            z-index: -1;
            /* Limit width to a spot or text? User said "Heart-like shimmer... radial gradient" */
            width: 40px;
            height: 40px;
            left: -10px;
            /* Near checkbox */
            border-radius: 50%;
        }

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================
   7. New Content Layout Styles
   ========================================= */
.rpt-content-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.rpt-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.rpt-col {
    flex: 1;
}


.rpt-content-box {
    background: var(--paper);
    background: rgba(253, 247, 230, 0.98);
    /* Add solid background */
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    /* Increased shadow */
    height: 100%;
    position: relative;
    /* Ensure it stays above background */
    z-index: 2;
    /* Higher than background pattern */
}


.rpt-table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.rpt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: #fff;
}

    .rpt-table th,
    .rpt-table td {
        border: 1px solid var(--border);
        padding: 0.75rem 1rem;
        text-align: left;
    }

    .rpt-table th {
        background: rgba(186, 26, 26, 0.08);
        color: var(--accent-2);
        font-weight: bold;
        font-family: var(--serif);
    }

    .rpt-table tr:nth-child(even) {
        background-color: #fcfcfc;
    }

/* Typography updates for content */
.rpt-content-wrapper h2 {
    font-family: var(--serif);
    color: var(--accent-2) !important;
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
    display: inline-block;
    width:100%;
    text-align:center;
}

.rpt-content-wrapper h3 {
    font-family: var(--serif);
    color: #2a1a0a !important;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.rpt-content-wrapper p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #1a1a1a !important;
    /* Force dark text */
}

.rpt-content-wrapper ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.rpt-content-wrapper li {
    margin-bottom: 0.5rem;
    color: #1a1a1a !important;
    /* Force dark text */
}


.rpt-faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 1rem;
}

    .rpt-faq-item:last-child {
        border-bottom: none;
    }

.rpt-faq-question {
    font-weight: bold;
    color: var(--accent-2);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1.1rem;
    font-family: var(--serif);
}

/* Responsive Grid */
@media (min-width: 900px) {
    .rpt-row {
        flex-direction: row;
        align-items: stretch;
    }

    .rpt-col-6 {
        width: 50%;
    }

    .rpt-col-12 {
        width: 100%;
    }
}



/* How to Use Section Styles - Add this to your CSS */
/* How to Use Section - Single Section Responsive */

.rpt-infographic-section {
    padding: 3rem 1.25rem;
}

.rpt-how-heading {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--accent-2);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rpt-how-content {
    max-width: 100%;
    margin: 0 auto 3rem;
}

.rpt-how-steps {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 0 0 2rem 0;
    color: var(--text);
}

    .rpt-how-steps li {
        margin-bottom: 1rem;
        line-height: 1.7;
        font-size: 1rem;
        padding-left: 0.5rem;
    }

        .rpt-how-steps li strong {
            color: var(--accent-2);
            font-weight: 700;
        }

.rpt-quick-tips {
    background: rgba(186, 26, 26, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-2);
    margin-top: 2rem;
}

.rpt-tips-heading {
    font-family: var(--serif);
    color: var(--accent-2);
    font-size: 1.3rem;
    margin: 0 0 0.75rem 0;
}

.rpt-quick-tips p {
    margin: 0;
    line-height: 1.6;
    color: var(--text);
}

.rpt-infographic-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 0;
    margin-top: 2rem;
}

.rpt-infographic-full {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .rpt-infographic-full:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

/* Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
    .rpt-infographic-section {
        padding: 2rem 1rem;
    }

    .rpt-how-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .rpt-how-steps {
        padding-left: 1.2rem;
    }

        .rpt-how-steps li {
            font-size: 0.95rem;
            margin-bottom: 0.85rem;
        }

    .rpt-quick-tips {
        padding: 1.2rem;
    }

    .rpt-tips-heading {
        font-size: 1.1rem;
    }

    .rpt-quick-tips p {
        font-size: 0.9rem;
    }

    .rpt-infographic-wrapper {
        padding: 1.5rem 0 0;
        margin-top: 1.5rem;
    }

    .rpt-infographic-full {
        border-radius: 8px;
    }
}

/* Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .rpt-infographic-section {
        padding: 2.5rem 1.5rem;
    }

    .rpt-how-content {
        max-width: 680px;
    }

    .rpt-infographic-full {
        max-width: 550px;
    }
}

/* Small Laptops & Tablets Landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .rpt-infographic-section {
        padding: 3.5rem 2rem;
    }

    .rpt-how-content {
        max-width: 800px;
    }

    .rpt-how-steps li {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .rpt-infographic-full {
        max-width: 700px;
    }
}

/* Laptops & Desktops (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .rpt-infographic-section {
        padding: 4rem 2rem;
    }

    .rpt-how-content {
        max-width: 950px;
    }

    .rpt-how-steps {
        padding-left: 2rem;
    }

        .rpt-how-steps li {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.1rem;
        }

    .rpt-quick-tips {
        padding: 2rem;
    }

    .rpt-tips-heading {
        font-size: 1.4rem;
    }

    .rpt-infographic-wrapper {
        padding: 2.5rem 0 0;
        margin-top: 3rem;
    }

    .rpt-infographic-full {
        max-width: 700px;
    }
}

/* Large Desktops (1441px+) */
@media (min-width: 1441px) {
    .rpt-infographic-section {
        padding: 5rem 2rem;
    }

    .rpt-container {
        max-width: 1200px;
    }

    .rpt-content-wrapper {
        max-width: 1220px;
    }

    .rpt-how-content {
        max-width: 1050px;
    }

    .rpt-how-steps {
        padding-left: 2.5rem;
    }

        .rpt-how-steps li {
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 1.2rem;
        }

    .rpt-quick-tips {
        padding: 2.5rem;
    }

    .rpt-tips-heading {
        font-size: 1.5rem;
    }

    .rpt-quick-tips p {
        font-size: 1.05rem;
    }

    .rpt-infographic-wrapper {
        padding: 3rem 0 0;
        margin-top: 3.5rem;
    }

    .rpt-infographic-full {
        max-width: 700px;
    }
}

/* Ultra-Wide Displays (1920px+) */
@media (min-width: 1920px) {
    .rpt-how-content {
        max-width: 1100px;
    }

    .rpt-infographic-full {
        max-width: 700px;
    }
}





/* =========================================
   8. Legal Pages Styles
   ========================================= */

/* Page Header Styles */
.rpt-legal-subtitle {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.rpt-legal-subtitle-center {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Section Box Styles */
.rpt-legal-box {
    margin-bottom: 2rem;
}

.rpt-legal-heading {
    font-family: var(--serif);
    color: var(--accent-2);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rpt-legal-text {
    color: var(--text);
    line-height: 1.7;
}

.rpt-legal-text-mb {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.rpt-legal-text-mt {
    color: var(--text);
    line-height: 1.7;
    margin-top: 1rem;
}

/* List Styles */
.rpt-legal-list {
    padding-left: 1.5rem;
    color: var(--text);
    line-height: 1.7;
}

    .rpt-legal-list li {
        margin-bottom: 0.5rem;
    }

/* Contact Page Specific */
.rpt-contact-info {
    color: var(--text);
    line-height: 2;
}

.rpt-contact-link {
    color: var(--accent-2);
    text-decoration: none;
}

    .rpt-contact-link:hover {
        text-decoration: underline;
    }

/* FAQ Styles */
.rpt-faq-section {
    margin-bottom: 1.5rem;
}

.rpt-faq-question {
    font-family: var(--serif);
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Social Section */
.rpt-social-section {
    text-align: center;
    margin-top: 1.5rem;
}

.rpt-social-heading {
    color: var(--text);
    font-weight: bold;
    margin-bottom: 1rem;
}

.rpt-social-icons-center {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Navigation Buttons */
.rpt-legal-nav {
    margin-top: 2rem;
    text-align: center;
}

/* About Page Score List */
.rpt-score-list {
    padding-left: 1.5rem;
    color: var(--text);
    line-height: 1.7;
}

    .rpt-score-list li {
        margin-bottom: 0.5rem;
    }

    .rpt-score-list strong {
        color: var(--accent-2);
        font-weight: 700;
    }

/* Responsive adjustments for legal pages */
@media (max-width: 480px) {
    .rpt-legal-heading {
        font-size: 1.3rem;
    }

    .rpt-legal-subtitle,
    .rpt-legal-subtitle-center {
        font-size: 0.85rem;
    }

    .rpt-faq-question {
        font-size: 1rem;
    }
}

@media (min-width: 720px) {
    .rpt-legal-heading {
        font-size: 1.6rem;
    }
}
a {
    text-decoration: none;
    color: #0A509E;
    font-weight: bold;
}

.keyword {
    font-weight: bold; /* Makes text bold */
    color: #B5651D; /* Optional: change color for emphasis */
}