
    :root {
        --primary-color: #f7931e; /* Màu cam đậm */
        --secondary-color: #333; /* Màu xám đậm */
        --text-color: #444; /* Màu văn bản */
        --background-color: #f8f8f8; /* Màu nền nhẹ */
        --light-grey: #eee; /* Màu xám nhạt */
        --white: #fff; /* Màu trắng */
        --dark-grey: #222; /* Màu xám rất đậm */
    }

    /* Base styles for the specific page content */
    .page-kentucky-hit-and-run {
        font-family: 'Segoe UI', Arial, sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--background-color);
        padding: 10px 0 40px 0; /* Adjusted padding-top to avoid double header offset, using 10px as decorative top margin */
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .page-kentucky-hit-and-run__container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Hero Section */
    .page-kentucky-hit-and-run__hero-section {
        text-align: center;
        padding: 60px 20px;
        background-color: var(--dark-grey);
        color: var(--white);
        margin-bottom: 40px;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-kentucky-hit-and-run__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .page-kentucky-hit-and-run__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-kentucky-hit-and-run__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: var(--primary-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-kentucky-hit-and-run__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: var(--light-grey);
    }

    /* Article Content Section */
    .page-kentucky-hit-and-run__article-section {
        background-color: var(--white);
        padding: 40px 30px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .page-kentucky-hit-and-run__section-title {
        font-size: 2em;
        color: var(--secondary-color);
        margin-bottom: 25px;
        border-bottom: 3px solid var(--primary-color);
        padding-bottom: 10px;
        display: inline-block;
    }

    .page-kentucky-hit-and-run__paragraph {
        margin-bottom: 20px;
        font-size: 1.05em;
    }

    .page-kentucky-hit-and-run__image-container {
        text-align: center;
        margin: 30px 0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-kentucky-hit-and-run__content-image {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-kentucky-hit-and-run__list {
        list-style-type: disc;
        margin-left: 25px;
        margin-bottom: 20px;
        padding-left: 0;
    }

    .page-kentucky-hit-and-run__list-item {
        margin-bottom: 10px;
        color: var(--text-color);
        box-sizing: border-box; /* Required for list items */
        word-wrap: break-word; /* Required for text wrapping */
        overflow-wrap: break-word; /* Required for text wrapping */
    }

    .page-kentucky-hit-and-run__highlight {
        color: var(--primary-color);
        font-weight: bold;
    }

    /* FAQ Section */
    .page-kentucky-hit-and-run__faq-section {
        background-color: var(--white);
        padding: 40px 30px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .page-kentucky-hit-and-run__faq-item {
        border-bottom: 1px solid var(--light-grey);
        margin-bottom: 10px;
    }

    .page-kentucky-hit-and-run__faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .page-kentucky-hit-and-run__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        cursor: pointer;
        user-select: none;
        font-size: 1.1em;
        color: var(--secondary-color);
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-kentucky-hit-and-run__faq-question:hover {
        background-color: rgba(0, 0, 0, 0.03);
    }

    .page-kentucky-hit-and-run__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click events */
    }

    .page-kentucky-hit-and-run__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click events */
    }

    .page-kentucky-hit-and-run__faq-item.active .page-kentucky-hit-and-run__faq-toggle {
        transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-kentucky-hit-and-run__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--text-color);
        font-size: 1em;
        background-color: var(--background-color);
        border-radius: 0 0 8px 8px;
    }

    .page-kentucky-hit-and-run__faq-item.active .page-kentucky-hit-and-run__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important;
        opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-kentucky-hit-and-run {
            padding-top: 10px; /* Adjust for mobile, keeping some top padding */
        }

        .page-kentucky-hit-and-run__hero-section {
            padding: 40px 15px;
        }

        .page-kentucky-hit-and-run__hero-title {
            font-size: 2em;
        }

        .page-kentucky-hit-and-run__hero-description {
            font-size: 1em;
        }

        .page-kentucky-hit-and-run__article-section,
        .page-kentucky-hit-and-run__faq-section {
            padding: 25px 15px;
        }

        .page-kentucky-hit-and-run__section-title {
            font-size: 1.6em;
            margin-bottom: 20px;
        }

        .page-kentucky-hit-and-run__paragraph {
            font-size: 0.95em;
        }

        .page-kentucky-hit-and-run__list {
            margin-left: 15px;
        }

        /* Responsive for list items */
        .page-kentucky-hit-and-run__list-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 0 !important; /* Adjust padding if needed */
            padding-right: 0 !important; /* Adjust padding if needed */
        }

        /* Responsive for list containers */
        .page-kentucky-hit-and-run__list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* Image responsiveness */
        .page-kentucky-hit-and-run__image-container {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
            margin: 20px 0 !important;
        }

        .page-kentucky-hit-and-run__content-image {
            max-width: 100% !important;
            height: auto !important;
        }

        .page-kentucky-hit-and-run__faq-question {
            font-size: 1em;
            padding: 12px 0;
        }

        .page-kentucky-hit-and-run__faq-toggle {
            font-size: 1.3em;
        }

        .page-kentucky-hit-and-run__faq-answer {
            padding: 15px 10px;
            font-size: 0.95em;
        }
    }

    @media (max-width: 480px) {
        .page-kentucky-hit-and-run__hero-title {
            font-size: 1.8em;
        }
        .page-kentucky-hit-and-run__section-title {
            font-size: 1.4em;
        }
    }
  