/* First Aid Response Page Styles - Using BEM Methodology */
.first-aid {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    color: #1a2a42;
    line-height: 1.6;
}

/* Section Header Styles */
.first-aid__section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 15px;
}

.first-aid__section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #6a3de8;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.first-aid__section-title--light {
    color: #ffffff;
}

.first-aid__section-header--light {
    color: #ffffff;
}

.first-aid__section-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section Styles */
.first-aid__hero {
    position: relative;
    padding: 0;
    background-color: #f7f9fc;
    overflow: hidden;
}

.first-aid__hero-content {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.first-aid__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.first-aid__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.first-aid__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(31, 31, 31, 0.9) 0%, rgba(106, 61, 232, 0.8) 100%);
}

.first-aid__hero-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2.5rem;
    max-width: 550px;
    width: 90%;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: 2rem;
    border-top: 4px solid #6a3de8;
}

.first-aid__hero-title {
    color: #6a3de8;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.first-aid__hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.first-aid__hero-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.first-aid__stat-item {
    text-align: center;
    flex: 1;
}

.first-aid__stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #6a3de8;
    margin-bottom: 0.25rem;
}

.first-aid__stat-label {
    font-size: 0.875rem;
    color: #718096;
}

.first-aid__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #6a3de8;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(106, 61, 232, 0.3);
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.first-aid__cta-button:hover {
    background-color: #5227cf;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -2px rgba(106, 61, 232, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* --- UPDATED Injuries Section Styles --- */
.first-aid__injuries {
    background-color: #f7f9fc;
    padding: 4rem 0;
}

.first-aid__injury-types {
    display: flex;
    /* Use flex to center the grid container and button */
    flex-direction: column;
    /* Stack grid and button vertically */
    align-items: center;
    /* Center items horizontally */
}

/* Core Grid Styling for Injuries */
.first-aid__injury-grid {
    display: grid;
    /* Mobile First: 2 columns (3 rows of 2) */
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 2rem;
    /* Space between grid and button */
}

/* Injury Card Styling (minor adjustments if needed) */
.first-aid__injury-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #6a3de8;
    height: 100%;
    /* For height equalization by JS */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Add transition for display changes */
    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease-out;
    overflow: hidden;
    /* Needed for max-height transition */
}

.first-aid__injury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Styles for Initially Hidden Cards */
.first-aid__injury-card--hidden {
    /* Hide visually and remove from layout */
    opacity: 0;
    transform: translateY(10px);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    /* Collapse margin when hidden */
    border-top-width: 0;
    /* Hide top border when collapsed */
    visibility: hidden;
    /* display: none; */
    /* Avoid display:none for transitions */
}

/* Style when cards are revealed by JS */
.first-aid__injury-card--visible {
    opacity: 1;
    transform: translateY(0);
    /* max-height will be set by JS during equalization or use a large value */
    max-height: 500px;
    /* Adjust if cards can be taller */
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 0;
    /* Ensure default margin/gap is handled by grid */
    border-top-width: 4px;
    visibility: visible;
}


.first-aid__injury-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: #f5f0ff;
    border-radius: 50%;
    color: #6a3de8;
}

.first-aid__injury-icon i {
    font-size: 30px;
}

.first-aid__injury-title {
    color: #6a3de8;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.first-aid__injury-description {
    color: #4a5568;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* View More Button Styling */
.first-aid__view-more-button {
    display: inline-block;
    /* Allows centering via text-align on parent if needed */
    /* margin: 2rem auto 0; */
    /* Handled by flex container now */
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #6a3de8;
    border: 2px solid #6a3de8;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.first-aid__view-more-button:hover {
    background-color: #f5f0ff;
    transform: translateY(-2px);
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    /* --- UPDATE: Injuries grid becomes 3 columns --- */
    .first-aid__injury-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 2 rows of 3 */
    }
}

/* Specific adjustments for the 3-column layout transition */
@media (min-width: 768px) and (max-width: 991px) {
    .first-aid__injury-card {
        padding: 1.25rem;
    }

    .first-aid__injury-title {
        font-size: 1.2rem;
    }

    .first-aid__injury-description {
        font-size: 0.9rem;
    }
}


/* Benefit Panel Styles */
.first-aid__benefit-panel {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #6a3de8;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    /* Ensure space after injury grid/button */
}

.first-aid__benefit-title {
    color: #6a3de8;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.first-aid__benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: Stack benefits */
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
}

@media (min-width: 768px) {
    .first-aid__benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Two columns */
    }
}

@media (min-width: 992px) {
    .first-aid__benefit-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Four columns on large screens */
    }
}

.first-aid__benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.first-aid__benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #f5f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a3de8;
}

.first-aid__benefit-icon i {
    font-size: 24px;
}

.first-aid__benefit-content {
    flex: 1;
}

.first-aid__benefit-item-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a2a42;
    font-weight: 600;
}

.first-aid__benefit-description {
    margin-bottom: 0;
    color: #4a5568;
}

/* Availability Section Styles */
.first-aid__availability {
    background-color: #ffffff;
    text-align: center;
    padding: 4rem 0;
}

.first-aid__availability-badge {
    display: inline-flex;
    align-items: center;
    background-color: #f7f9fc;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.first-aid__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #6a3de8;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
}

.first-aid__badge-icon--pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(106, 61, 185, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(106, 61, 185, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(106, 61, 185, 0);
    }
}

.first-aid__badge-text {
    padding: 0 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6a3de8;
}

/* Testimonials Section Styles */
.first-aid__testimonials {
    background: linear-gradient(135deg, #5227cf 0%, #6a3de8 100%);
    color: #ffffff;
    text-align: center;
    padding: 4rem 0;
}

.first-aid__testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}

.first-aid__testimonial-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    margin: 1rem auto;
    display: none;
}

.first-aid__testimonial-item:first-child {
    display: block;
}

.first-aid__testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
}

.first-aid__testimonial-quote::before {
    content: "\201C";
    font-size: 4rem;
    position: absolute;
    left: -1.5rem;
    top: -1.5rem;
    opacity: 0.3;
}

.first-aid__testimonial-author {
    text-align: right;
}

.first-aid__author-name {
    font-size: 1.125rem;
    font-weight: 600;
}

.first-aid__author-position {
    font-size: 0.875rem;
    opacity: 0.8;
}

.first-aid__testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.first-aid__testimonial-control {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
}

.first-aid__testimonial-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.first-aid__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.first-aid__dot--active {
    background-color: #ffffff;
    transform: scale(1.2);
}

/* Compare Section Styles */
.first-aid__compare {
    background-color: #f7f9fc;
    padding: 4rem 0;
}

.first-aid__comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.first-aid__comparison-column {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.first-aid__comparison-column--primary {
    border-top: 4px solid #6a3de8;
}

.first-aid__comparison-column--secondary {
    border-top: 4px solid #718096;
}

.first-aid__service-label {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #6a3de8;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-bottom-right-radius: 8px;
    z-index: 1;
}

.first-aid__service-label--alt {
    background-color: #718096;
}

.first-aid__comparison-header {
    background-color: #6a3de8;
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.first-aid__comparison-header--alt {
    background-color: #718096;
}

.first-aid__comparison-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.first-aid__highlight-feature {
    background-color: #f7f9fc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.first-aid__highlight-title {
    font-size: 1rem;
    color: #6a3de8;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.first-aid__highlight-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1a2a42;
}

.first-aid__highlight-description {
    font-size: 0.875rem;
    color: #718096;
}

.first-aid__feature-list {
    margin-top: 1.5rem;
    flex: 1;
}

.first-aid__comparison-feature {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.first-aid__comparison-feature:last-child {
    border-bottom: none;
}

.first-aid__feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: bold;
}

.first-aid__feature-icon--check {
    background-color: #48bb78;
    color: #ffffff;
}

.first-aid__feature-icon--cross {
    background-color: #e53e3e;
    color: #ffffff;
}

.first-aid__feature-text {
    color: #4a5568;
}

/* Telehealth Section Styles */
.first-aid__telehealth {
    background-color: #ffffff;
    padding: 4rem 0;
}

.first-aid__telehealth-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: center;
}

.first-aid__telehealth-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.first-aid__telehealth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.first-aid__feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.first-aid__feature-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.first-aid__feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6a3de8;
    font-weight: bold;
}

.first-aid__telehealth-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.first-aid__telehealth-card {
    background-color: #f7f9fc;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 3px solid #6a3de8;
}

.first-aid__telehealth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.first-aid__card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.first-aid__card-header i {
    font-size: 2rem;
    color: #6a3de8;
    margin-right: 0.75rem;
}

.first-aid__card-title {
    margin: 0;
    color: #6a3de8;
    font-size: 1.5rem;
    font-weight: 600;
}

.first-aid__card-description {
    color: #4a5568;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.first-aid__telehealth-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6a3de8;
    margin: 1rem 0;
}

.first-aid__telehealth-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #6a3de8;
    border: 2px solid #6a3de8;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.first-aid__telehealth-button:hover {
    background-color: #6a3de8;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Map Section Styles */
.first-aid__map {
    background-color: #f7f9fc;
    padding: 4rem 0;
}

.first-aid__map-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.first-aid__map-container {
    position: relative;
    height: 400px;
    width: 100%;
}

.first-aid__map-element {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.first-aid__loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.first-aid__spinner {
    width: 50px;
    height: 50px;
    position: relative;
}

.first-aid__spinner-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #6a3de8;
    border-right-color: #8a65f0;
    border-bottom-color: #6a3de8;
    border-left-color: #8a65f0;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.first-aid__loading-text {
    margin-top: 1rem;
    font-weight: 500;
    color: #4a5568;
}

.first-aid__map-key {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: #ffffff;
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    z-index: 1;
}

.first-aid__map-key-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.first-aid__map-key-item:last-child {
    margin-bottom: 0;
}

.first-aid__map-key-item span {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
}

.first-aid__service-area {
    background-color: rgba(106, 61, 185, 0.3);
    border: 2px solid #6a3de8;
}

.first-aid__county-marker {
    background-color: #48bb78;
    border-radius: 50%;
}

.first-aid__counties-list {
    padding: 1.5rem;
}

.first-aid__counties-title {
    color: #6a3de8;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.first-aid__county-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.first-aid__county-item {
    padding: 0.75rem;
    border-radius: 8px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    background-color: #f7f9fc;
    transition: all 0.3s ease;
}

.first-aid__county-item:hover {
    background-color: #f0f5ff;
    transform: translateX(5px);
}

.first-aid__county-item:last-child {
    border-bottom: none;
}

/* Tip Section Styles */
.first-aid__tip {
    background-color: #ffffff;
    padding: 4rem 0;
}

.first-aid__tip-card {
    background-color: #f7f9fc;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid #6a3de8;
}

.first-aid__tip-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.first-aid__tip-header i {
    font-size: 2rem;
    color: #6a3de8;
    margin-right: 0.75rem;
}

.first-aid__tip-title {
    margin: 0;
    color: #6a3de8;
    font-size: 1.5rem;
    font-weight: 600;
}

.first-aid__tip-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #6a3de8;
}

.first-aid__tip-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.6;
}

.first-aid__tip-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.first-aid__tip-share {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #6a3de8;
    color: #6a3de8;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.first-aid__tip-share:hover {
    background-color: #6a3de8;
    color: #ffffff;
}

.first-aid__tip-share i {
    margin-right: 0.5rem;
}

/* --- REVISED Training Section Styles --- */
.first-aid__training {
    background-color: #f7f9fc;
    /* Light background */
    padding: 4rem 0;
}

/* Reorganized Content Wrapper */
.first-aid__training-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: Stack image and text */
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: center;
    /* Align items vertically */
}

/* Text & Benefits Block */
.first-aid__training-text-block {
    order: 2;
    /* Text comes after image on mobile */
}

.first-aid__training-subheading {
    font-size: 1.75rem;
    font-weight: 600;
    color: #6a3de8;
    /* QuickCare purple */
    margin-bottom: 1rem;
}

.first-aid__training-intro {
    font-size: 1.05rem;
    color: #4a5568;
    /* Dark grey text */
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Benefits Section (Grid Layout) */
.first-aid__training-benefits {
    display: grid;
    grid-template-columns: 1fr;
    /* Stack benefits on mobile */
    gap: 1.5rem;
}

.first-aid__training-benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    /* Align icon and text at the top */
    background-color: #ffffff;
    /* White background for each item */
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #8a65f0;
    /* Lighter purple accent */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.first-aid__training-benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.first-aid__training-benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #f5f0ff;
    /* Very light purple */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a3de8;
    /* QuickCare purple */
}

.first-aid__training-benefit-icon i {
    font-size: 24px;
}

.first-aid__training-benefit-content {
    flex: 1;
}

.first-aid__training-benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2a42;
    /* Dark blue/grey */
    margin-bottom: 0.4rem;
}

.first-aid__training-benefit-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Image Block */
.first-aid__training-image-block {
    order: 1;
    /* Image comes first on mobile */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    line-height: 0;
    /* Prevent extra space below image */
}

.first-aid__training-image {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    object-fit: cover;
    /* Ensure image covers area well */
    max-height: 500px;
    /* Optional: constrain max height */
}

/* Training Actions/CTA Area */
.first-aid__training-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    /* Separator */
    text-align: center;
}

.first-aid__training-actions-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #6a3de8;
    margin-bottom: 2rem;
}

.first-aid__training-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Stack cards on mobile */
    gap: 1.5rem;
    max-width: 900px;
    /* Limit width of the CTA grid */
    margin: 0 auto;
    /* Center the grid */
}

.first-aid__training-cta-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Make cards equal height within the grid row */
    border-top: 4px solid #e2e8f0;
    /* Default border */
}

.first-aid__training-cta-card--primary {
    border-top-color: #6a3de8;
    /* Highlight primary card */
    box-shadow: 0 8px 15px rgba(106, 61, 232, 0.1);
    /* More emphasis */
}

.first-aid__training-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.first-aid__training-cta-icon {
    margin-bottom: 1rem;
    color: #6a3de8;
    display: flex;
    /* Allows multiple icons */
    justify-content: center;
    gap: 0.5rem;
}

.first-aid__training-cta-icon i {
    font-size: 2.5rem;
    /* Adjust icon size */
}

.first-aid__training-cta-title {
    color: #6a3de8;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.first-aid__training-cta-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Push button to the bottom */
    font-size: 0.95rem;
    line-height: 1.6;
}

.first-aid__training-cta-button {
    display: inline-block;
    /* Keep inline-block for centering */
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
    /* Aligns button to bottom */
    width: auto;
    /* Button width based on content */
    max-width: 90%;
    /* Prevent overly wide buttons */
}

.first-aid__training-cta-button--primary,
/* Default primary style */
.first-aid__training-cta-card--primary .first-aid__training-cta-button {
    background-color: #6a3de8;
    color: #ffffff;
    border: 2px solid #6a3de8;
}

.first-aid__training-cta-button--primary:hover,
.first-aid__training-cta-card--primary .first-aid__training-cta-button:hover {
    background-color: #5227cf;
    border-color: #5227cf;
    color: #ffffff;
    /* Ensure text remains white */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(106, 61, 232, 0.3);
}

.first-aid__training-cta-button--secondary {
    background-color: transparent;
    color: #6a3de8;
    border: 2px solid #6a3de8;
}

.first-aid__training-cta-button--secondary:hover {
    background-color: #f5f0ff;
    /* Light purple background on hover */
    color: #5227cf;
    /* Darker purple text */
    border-color: #5227cf;
    transform: translateY(-2px);
}


/* Responsive adjustments for Training Section */
@media (min-width: 768px) {
    .first-aid__training-benefits {
        grid-template-columns: repeat(2, 1fr);
        /* Two columns for benefits */
    }

    .first-aid__training-cta-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Two columns for CTAs */
    }
}

@media (min-width: 992px) {
    .first-aid__training-wrapper {
        grid-template-columns: 1fr 1fr;
        /* Side-by-side image and text */
        gap: 3rem;
    }

    .first-aid__training-text-block {
        order: 1;
        /* Text on the left */
    }

    .first-aid__training-image-block {
        order: 2;
        /* Image on the right */
    }
}

/* FAQ Section Styles */
.first-aid__faq {
    background-color: #ffffff;
    padding: 4rem 0;
}

.first-aid__faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.first-aid__faq-item {
    background-color: #f7f9fc;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.first-aid__faq-item--hidden {
    display: none;
}

.first-aid__faq-question {
    width: 100%;
    background-color: #f7f9fc;
    border: none;
    text-align: left;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.first-aid__faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.first-aid__faq-icon::before,
.first-aid__faq-icon::after {
    content: '';
    position: absolute;
    background-color: #6a3de8;
    transition: all 0.3s ease;
}

.first-aid__faq-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.first-aid__faq-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.first-aid__faq-question[aria-expanded="true"] .first-aid__faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.first-aid__faq-question:hover,
.first-aid__faq-question[aria-expanded="true"] {
    background-color: #f5f0ff;
    color: #6a3de8;
}

.first-aid__faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.first-aid__faq-answer p {
    padding-bottom: 1rem;
    color: #4a5568;
}

.first-aid__faq-more {
    text-align: center;
    margin-top: 2rem;
}

/* CTA Section Styles */
.first-aid__cta {
    background-color: #f7f9fc;
    padding: 4rem 0;
}

.first-aid__cta-grid {
    /* display: grid; */
    /* Remove or comment out this line */
    /* grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); */
    /* Remove or comment out this line */
    display: flex;
    /* ADDED: Use flexbox */
    justify-content: center;
    /* ADDED: Center items horizontally */
    flex-wrap: wrap;
    /* ADDED: Allow items to wrap */
    gap: 1.5rem;
    /* Keep gap for spacing */
}

.first-aid__cta-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* Removed height: 100%; - let flexbox handle alignment */
    display: flex;
    flex-direction: column;
    border-top: 3px solid #6a3de8;
    width: 100%;
    /* Allow cards to take width on small screens */
    max-width: 320px;
    /* Set a max-width for larger screens */
    flex-grow: 0;
    /* Prevent cards from growing excessively */
    flex-shrink: 1;
    /* Allow shrinking */
}

/* Keep other .first-aid__cta-card styles */
.first-aid__cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.first-aid__cta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.first-aid__cta-title {
    color: #6a3de8;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.first-aid__cta-description {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Allow description to push button down */
    color: #4a5568;
}

.first-aid__cta-button {
    display: inline-flex;
    /* Changed from block to inline-flex if you want width based on content, or keep block/flex for full width */
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    background-color: #6a3de8;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    /* Make button take full width of card */
    margin-top: auto;
    /* Push button to bottom */
}

.first-aid__cta-button:hover {
    background-color: #5227cf;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(106, 61, 232, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Contact Section Styles */
.first-aid__contact {
    background-color: #f5f0ff;
    padding: 4rem 0;
}

.first-aid__contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.first-aid__contact-info {
    background: linear-gradient(135deg, #5227cf 0%, #6a3de8 100%);
    color: #ffffff;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.first-aid__contact-info-title {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.first-aid__contact-info-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.first-aid__contact-phone {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #ffffff;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.first-aid__contact-form-container {
    padding: 2rem;
}

.first-aid__form-group {
    margin-bottom: 1rem;
}

.first-aid__form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4a5568;
}

.first-aid__form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.first-aid__form-control:focus {
    outline: none;
    border-color: #6a3de8;
    box-shadow: 0 0 0 3px rgba(106, 61, 232, 0.2);
}

.first-aid__submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    width: 100%;
    color: #ffffff;
    background-color: #6a3de8;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.first-aid__submit-button:hover {
    background-color: #5227cf;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(106, 61, 232, 0.4);
}

.first-aid__submit-button i {
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .first-aid__comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .first-aid__map-wrapper {
        grid-template-columns: 2fr 1fr;
    }

    .first-aid__contact-wrapper {
        grid-template-columns: 1fr 2fr;
    }

    .first-aid__telehealth-content,
    .first-aid__training-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .first-aid__hero-card {
        margin: 0 auto;
        max-width: 90%;
    }

    .first-aid__hero-content {
        min-height: 550px;
    }

    .first-aid__benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .first-aid__section-title {
        font-size: 1.75rem;
    }

    .first-aid__hero-content {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        min-height: auto;
    }

    .first-aid__hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .first-aid__hero-card {
        padding: 1.5rem;
    }

    .first-aid__availability-badge {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .first-aid__badge-icon,
    .first-aid__badge-text {
        width: 100%;
        padding: 1rem;
    }

    .first-aid__benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .first-aid__tip-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .first-aid__training-actions {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .first-aid__hero-title {
        font-size: 2rem;
    }

    .first-aid__benefit-panel {
        padding: 1rem;
    }

    .first-aid__testimonial-item {
        padding: 1rem;
    }

    .first-aid__contact-info,
    .first-aid__contact-form-container {
        padding: 1.5rem;
    }

    .first-aid__contact-phone {
        font-size: 1.5rem;
    }
}

/* Process Step Section Styles */
.first-aid__process {
    background-color: #ffffff;
    padding: 4rem 0;
    position: relative;
}

.first-aid__process-steps {
    padding: 2rem 0;
}

.first-aid__process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    text-align: center;
}

.first-aid__process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #6a3de8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(106, 61, 232, 0.4);
    z-index: 2;
}

.first-aid__process-icon {
    width: 80px;
    height: 80px;
    background-color: #f5f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #6a3de8;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(106, 61, 232, 0.2);
}

.first-aid__process-icon i {
    font-size: 36px;
}

.first-aid__process-title {
    color: #6a3de8;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.first-aid__process-description {
    color: #4a5568;
    max-width: 80%;
    margin: 0 auto 1.5rem;
}

.first-aid__process-connector {
    display: flex;
    justify-content: center;
    position: relative;
    height: 50px;
    margin-bottom: 2rem;
}

.first-aid__process-arrow {
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #6a3de8, #8a65f0);
    position: relative;
}

.first-aid__process-arrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #8a65f0;
}

.first-aid__process-mockup {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    perspective: 1000px;
}

/* Mockup Phone Styles */
.first-aid__mockup-phone {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.first-aid__mockup-screen {
    background-color: #121212;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    position: relative;
}

.first-aid__mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background-color: #000000;
    color: #ffffff;
}

.first-aid__mockup-time {
    font-size: 14px;
    font-weight: 500;
}

.first-aid__mockup-icons {
    display: flex;
    gap: 4px;
}

.first-aid__mockup-icon {
    width: 16px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 3px;
}

.first-aid__mockup-call {
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to bottom, #6a3de8, #5227cf);
}

.first-aid__mockup-contact {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.first-aid__mockup-avatar {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: #6a3de8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-right: 15px;
}

.first-aid__mockup-contact-info {
    text-align: left;
    color: #ffffff;
}

.first-aid__mockup-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
}

.first-aid__mockup-number {
    font-size: 14px;
    opacity: 0.8;
}

.first-aid__mockup-timer {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    margin: 30px 0;
}

.first-aid__mockup-actions {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
}

.first-aid__mockup-action {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.first-aid__mockup-action i {
    font-size: 24px;
}

.first-aid__mockup-end-call {
    width: 70px;
    height: 70px;
    background-color: #e53e3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-top: auto;
}

.first-aid__mockup-end-call i {
    font-size: 30px;
}

/* Mockup Dialog Styles */
.first-aid__mockup-dialog {
    background-color: #f5f7fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 350px;
}

.first-aid__mockup-message {
    margin-bottom: 16px;
    display: flex;
}

.first-aid__mockup-message:last-child {
    margin-bottom: 0;
}

.first-aid__mockup-message--received {
    justify-content: flex-start;
}

.first-aid__mockup-message--sent {
    justify-content: flex-end;
}

.first-aid__mockup-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.first-aid__mockup-message--received .first-aid__mockup-bubble {
    background-color: #e2e8f0;
    color: #4a5568;
    border-bottom-left-radius: 4px;
}

.first-aid__mockup-message--sent .first-aid__mockup-bubble {
    background-color: #6a3de8;
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

/* Mockup Map Styles */
.first-aid__mockup-map {
    background-color: #f2f2f2;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.first-aid__mockup-route {
    height: 200px;
    background: url('https://cdn.goquickcare.com/map-background-bay-area.jpg') center/cover no-repeat;
    position: relative;
}

.first-aid__mockup-start-point {
    position: absolute;
    top: 30%;
    left: 30%;
    width: 40px;
    height: 40px;
    background-color: #6a3de8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(106, 61, 232, 0.5);
    animation: pulse 2s infinite;
}

.first-aid__mockup-start-point i {
    font-size: 20px;
}

.first-aid__mockup-destination {
    position: absolute;
    bottom: 30%;
    right: 30%;
    width: 40px;
    height: 40px;
    background-color: #2eca8b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(46, 202, 139, 0.5);
}

.first-aid__mockup-destination i {
    font-size: 20px;
}

.first-aid__mockup-route-line {
    position: absolute;
    /* Start near the center of the start icon (adjust if icon size/pos changes) */
    top: calc(30% + 18px);
    /* 30% down + half icon height (approx 40px/2 = 20px, slightly less) */
    left: calc(30% + 18px);
    /* 30% right + half icon width */

    /* Calculate approximate diagonal distance: sqrt((70%-30%)^2 + (70%-30%)^2)
		sqrt(40%^2 + 40%^2) = sqrt(0.16 + 0.16) = sqrt(0.32) ~= 56.6%
		Adjust slightly downwards to end *at* the icon, not past its center. */
    width: 30%;
    /* Reduced from ~57% to account for icon radii */
    height: 3px;
    /* Line thickness */
    background: linear-gradient(to right, #6a3de8, #2eca8b);

    /* Angle for a diagonal from (30,30) to (70,70) is 45 degrees */
    transform: rotate(45deg);
    transform-origin: left center;
    /* Rotate around the starting point's vertical center */
}

.first-aid__mockup-route-line::before {
    content: '';
    position: absolute;
    top: 50%;
    /* Center vertically on the line */
    right: -5px;
    /* Position just off the calculated end of the line */
    transform: translateY(-50%);
    /* Fine-tune vertical centering */
    width: 10px;
    /* Dot size */
    height: 10px;
    /* Dot size */
    background-color: #2eca8b;
    /* Green color */
    border-radius: 50%;
    /* Make it a circle */
    box-shadow: 0 0 5px rgba(46, 202, 139, 0.5);
    /* Optional glow */
}

.first-aid__mockup-notification {
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.first-aid__mockup-notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #6a3de8;
    font-weight: 600;
}

.first-aid__mockup-notification-header i {
    margin-right: 8px;
}

.first-aid__mockup-notification-body {
    display: flex;
    justify-content: space-between;
}

.first-aid__mockup-eta {
    font-size: 14px;
    color: #4a5568;
}

.first-aid__mockup-eta-time {
    font-weight: 600;
    color: #6a3de8;
}

.first-aid__mockup-provider-info {
    text-align: right;
    font-size: 14px;
    color: #4a5568;
}

.first-aid__mockup-provider-name {
    display: block;
    font-weight: 600;
}

.first-aid__mockup-license {
    display: block;
    font-size: 12px;
    color: #718096;
}

/* Mockup Treatment Styles */
.first-aid__mockup-treatment {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.first-aid__mockup-treatment-header {
    background-color: #6a3de8;
    color: #ffffff;
    padding: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.first-aid__mockup-logo {
    position: absolute;
    left: 15px;
    font-weight: 700;
    font-size: 16px;
}

.first-aid__mockup-treatment-title {
    font-weight: 600;
    font-size: 18px;
}

.first-aid__mockup-treatment-checklist {
    padding: 20px;
}

.first-aid__mockup-checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    background-color: #f7f9fc;
    transition: all 0.3s ease;
}

.first-aid__mockup-checklist-item--complete {
    background-color: #f0fff4;
}

.first-aid__mockup-checklist-item--active {
    background-color: #f5f0ff;
    border-left: 3px solid #6a3de8;
    box-shadow: 0 2px 8px rgba(106, 61, 232, 0.15);
}

.first-aid__mockup-checklist-item i {
    margin-right: 10px;
    font-size: 20px;
}

.first-aid__mockup-checklist-item--complete i {
    color: #2eca8b;
}

.first-aid__mockup-checklist-item--active i {
    color: #6a3de8;
}

.first-aid__mockup-treatment-time {
    background-color: #f7f9fc;
    padding: 15px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.first-aid__mockup-timer-label {
    font-size: 14px;
    color: #718096;
    margin-bottom: 5px;
}

.first-aid__mockup-timer-value {
    font-size: 22px;
    font-weight: 700;
    color: #6a3de8;
}

/* Mockup Document Styles */
.first-aid__mockup-document {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.first-aid__mockup-document-header {
    background-color: #f7f9fc;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.first-aid__mockup-doc-logo {
    font-weight: 700;
    font-size: 18px;
    color: #6a3de8;
    margin-bottom: 10px;
}

.first-aid__mockup-doc-title {
    font-weight: 600;
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 5px;
}

.first-aid__mockup-doc-id {
    font-size: 14px;
    color: #718096;
}

.first-aid__mockup-document-content {
    padding: 20px;
}

.first-aid__mockup-doc-section {
    margin-bottom: 15px;
}

.first-aid__mockup-doc-section:last-child {
    margin-bottom: 0;
}

.first-aid__mockup-doc-section-title {
    font-weight: 600;
    color: #6a3de8;
    margin-bottom: 5px;
    font-size: 14px;
}

.first-aid__mockup-doc-text {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
}

.first-aid__mockup-doc-status {
    font-weight: 600;
    color: #2eca8b;
    font-size: 13px;
    padding: 5px 10px;
    background-color: #f0fff4;
    border-radius: 4px;
    display: inline-block;
}

.first-aid__mockup-document-footer {
    padding: 15px 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.first-aid__mockup-doc-signature {
    font-style: italic;
    color: #4a5568;
}

.first-aid__mockup-doc-date {
    color: #718096;
}

.first-aid__mockup-doc-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-35deg);
    color: rgba(106, 61, 232, 0.1);
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.first-aid__process-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f5f0ff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.first-aid__process-cta-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(106, 61, 232, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(106, 61, 232, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(106, 61, 232, 0);
    }
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .first-aid__process-steps {
        padding: 3rem 0;
    }

    .first-aid__process-step {
        margin-bottom: 2rem;
    }

    .first-aid__process-mockup {
        max-width: 400px;
    }
}

@media (min-width: 992px) {
    .first-aid__process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 3rem 0 1rem;
    }

    .first-aid__process-step {
        margin-bottom: 0;
    }

    .first-aid__process-connector {
        display: none;
    }

    .first-aid__process-step::after {
        content: '';
        position: absolute;
        top: 40px;
        right: -25px;
        width: 50px;
        height: 3px;
        background: linear-gradient(to right, #6a3de8, #8a65f0);
        z-index: 1;
    }

    .first-aid__process-step:last-child::after {
        display: none;
    }

    .first-aid__process-step::after {
        right: -10%;
        width: 20%;
    }

    .first-aid__process-step:last-child::after {
        display: none;
    }

    .first-aid__process-step:nth-child(4n)::after {
        display: none;
    }

    .first-aid__process-mockup {
        max-width: 280px;
    }

    .first-aid__process-description {
        max-width: 90%;
    }
}

@media (max-width: 991px) {
    .first-aid__process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .first-aid__process {
        padding: 3rem 0;
    }

    .first-aid__process-icon {
        width: 70px;
        height: 70px;
    }

    .first-aid__process-icon i {
        font-size: 32px;
    }

    .first-aid__process-title {
        font-size: 1.25rem;
    }

    .first-aid__process-description {
        max-width: 95%;
    }

    .first-aid__mockup-phone {
        max-width: 240px;
    }

    .first-aid__mockup-screen {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .first-aid__process {
        padding: 2rem 0;
    }

    .first-aid__process-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .first-aid__process-icon i {
        font-size: 28px;
    }

    .first-aid__process-description {
        font-size: 0.9rem;
    }

    .first-aid__mockup-phone {
        max-width: 220px;
    }

    .first-aid__mockup-screen {
        height: 380px;
    }

    .first-aid__mockup-action {
        width: 50px;
        height: 50px;
    }

    .first-aid__mockup-end-call {
        width: 60px;
        height: 60px;
    }
}

.first-aid__injury-types {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers the grid inside the wrapper */
}

.first-aid__injury-grid {
    width: 100%;
    max-width: 1200px;
    /* Adjust as needed */
}

.first-aid__benefit-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers the grid inside the panel */
}

.first-aid__benefit-grid {
    width: 100%;
    max-width: 1200px;
    /* Adjust as needed */
}

.first-aid__injury-card,
.first-aid__benefit-item {
    margin-left: auto;
    margin-right: auto;
}

.first-aid__hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: rgba(106, 61, 232, 0.15);
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(106, 61, 232, 0.3);
}

.first-aid__hero-tag-icon {
    margin-right: 8px;
    font-size: 1rem;
}

.first-aid__hero-tag-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: #6a3de8;
}

.first-aid__hero-title {
    color: #1a2a42;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.first-aid__hero-subtitle {
    display: block;
    color: #6a3de8;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

@media (max-width: 576px) {
    .first-aid__hero-title {
        font-size: 2rem;
    }

    .first-aid__hero-subtitle {
        font-size: 1.5rem;
    }
}

/* --- Process Section Improvements --- */

.first-aid__process {
    background-color: #ffffff;
    padding: 4rem 0;
    position: relative;
}

.first-aid__process-steps {
    position: relative;
    /* Needed for absolute positioning of connectors */
    padding: 2rem 0;
    display: flex;
    /* Use flexbox for vertical stacking by default */
    flex-direction: column;
    gap: 3rem;
    /* Spacing between steps vertically */
}

/* Connector line for vertical (mobile) layout */
.first-aid__process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    /* Start below the first icon */
    bottom: 50px;
    /* End above the last icon */
    left: 49px;
    /* Align with the center of the 80px icon + 20px padding */
    width: 3px;
    background: linear-gradient(to bottom, #e2e8f0, #cbd5e0);
    /* Subtle grey line */
    z-index: 0;
    border-radius: 2px;
}

.first-aid__process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    /* Mobile first: icon/number above content */
    align-items: center;
    /* Center items horizontally on mobile */
    text-align: center;
    padding-left: 20px;
    /* Space for connector line */
    padding-right: 20px;
    z-index: 1;
    /* Ensure step content is above connector line */
}

/* Container for Number and Icon */
.first-aid__process-visual {
    position: relative;
    /* To position number relative to icon */
    margin-bottom: 1.5rem;
    display: flex;
    /* Align icon horizontally */
    justify-content: center;
    width: 100%;
    /* Take full width for centering */
    /* Align the icon with the connector line */
    padding-left: calc(49px - 40px);
    /* (line left pos - icon radius) */

}

.first-aid__process-number {
    position: absolute;
    top: -15px;
    /* Center relative to the icon's visual center */
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background-color: #6a3de8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(106, 61, 232, 0.3);
    z-index: 3;
    /* Above icon */
    border: 2px solid #ffffff;
    /* Optional: adds definition */
}

.first-aid__process-icon {
    width: 80px;
    height: 80px;
    background-color: #f5f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a3de8;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(106, 61, 232, 0.1);
    z-index: 2;
    /* Below number, above connector */
    position: relative;
    /* Needed for z-index */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.first-aid__process-icon i {
    font-size: 36px;
}

.first-aid__process-step:hover .first-aid__process-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(106, 61, 232, 0.15);
}

/* Content Area (Title, Description, Mockup) */
.first-aid__process-content {
    width: 100%;
    max-width: 450px;
    /* Limit content width */
    margin-top: 0;
    /* Reset margin */
}

.first-aid__process-title {
    color: #6a3de8;
    font-size: 1.5rem;
    /* Maintain size */
    font-weight: 600;
    margin-bottom: 0.75rem;
    /* Slightly less space */
}

.first-aid__process-description {
    color: #4a5568;
    margin: 0 auto 1.5rem;
    max-width: 90%;
    /* Limit description width relative to content */
    font-size: 1rem;
    /* Ensure readability */
}

.first-aid__process-mockup {
    width: 100%;
    max-width: 320px;
    /* Slightly smaller default max-width */
    margin: 1rem auto 0;
    /* Adjust spacing */
    perspective: 1000px;
    /* Add subtle effect */
    border-radius: 12px;
    overflow: hidden;
    /* Ensures children conform */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.first-aid__process-step:hover .first-aid__process-mockup {
    transform: scale(1.02);
    /* Subtle scale on step hover */
}


/* Desktop Layout (e.g., 992px and up) */
@media (min-width: 992px) {
    .first-aid__process-steps {
        flex-direction: row;
        /* Horizontal layout */
        justify-content: space-between;
        /* Distribute steps */
        gap: 2rem;
        /* Horizontal gap */
        padding: 3rem 0;
    }

    /* Horizontal Connector Line */
    .first-aid__process-steps::before {
        top: 40px;
        /* Align vertically with icon centers */
        left: 15%;
        /* Start after first step's initial space */
        right: 15%;
        /* End before last step's final space */
        width: auto;
        /* Let left/right determine width */
        height: 3px;
        /* Horizontal line */
        bottom: auto;
        /* Override vertical positioning */
        background: linear-gradient(to right, #e2e8f0, #cbd5e0);
    }

    .first-aid__process-step {
        flex: 1;
        /* Allow steps to take equal space */
        align-items: center;
        /* Center content vertically */
        padding-left: 1rem;
        /* Adjust padding */
        padding-right: 1rem;
        flex-direction: column;
        /* Keep icon/visual on top */
    }

    .first-aid__process-visual {
        margin-bottom: 1.5rem;
        padding-left: 0;
        /* Reset mobile padding */
        width: auto;
        /* Let content determine width */
    }

    .first-aid__process-content {
        max-width: none;
        /* Allow content to fill step width */
    }

    .first-aid__process-mockup {
        max-width: 280px;
        /* Further constrain on desktop grid */
    }

    .first-aid__process-description {
        max-width: 100%;
        font-size: 0.95rem;
        /* Slightly smaller for desktop grid */
    }
}

/* Reduce animations if user prefers */
@media (prefers-reduced-motion: reduce) {

    .first-aid__process-icon,
    .first-aid__process-mockup {
        transition: none;
    }

    .first-aid__process-step:hover .first-aid__process-icon,
    .first-aid__process-step:hover .first-aid__process-mockup {
        transform: none;
    }

    /* Add rules here to disable JS animations if needed */
    .first-aid__mockup-start-point {
        animation: none;
    }
}

/* Remove old connector styles */
.first-aid__process-connector {
    display: none;
}

.first-aid__process-step::after {
    content: none;
}

/* Remove old desktop connector */

/* Optional: Style the figure/figcaption if used */
.first-aid__process-mockup figure {
    margin: 0;
    position: relative;
}

.first-aid__process-mockup figcaption {
    display: none;
    /* Hide by default, maybe show on hover/focus for accessibility */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 0.8rem;
    text-align: center;
}

/* --- Mockup Confirmation Screen Styles (Step 1) --- */
.first-aid__mockup-confirmation {
    background-color: #ffffff;
    /* Light background */
    border-radius: 18px;
    /* Modern rounded corners */
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(106, 61, 232, 0.15), 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8eaf6;
    /* Subtle border */
    max-width: 340px;
    /* Control width */
    margin: 0 auto;
    /* Center */
    font-family: 'Roboto', sans-serif;
    /* Ensure font consistency */
}

.first-aid__mockup-confirmation-header {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    /* Slightly off-white header */
    border-bottom: 1px solid #e8eaf6;
}

.first-aid__mockup-confirmation-logo {
    width: 96px;
    margin-right: 8px;
}

.first-aid__mockup-confirmation-title {
    font-weight: 500;
    font-size: 0.9rem;
    color: #495057;
    /* Dark grey */
    flex-grow: 1;
    /* Push time to the right */
}

.first-aid__mockup-confirmation-time {
    font-size: 0.85rem;
    color: #6c757d;
    /* Medium grey */
}

.first-aid__mockup-confirmation-body {
    padding: 25px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #fdfdff);
    /* Very subtle gradient */
}

.first-aid__mockup-confirmation-icon {
    width: 60px;
    height: 60px;
    background-color: #e8e1ff;
    /* Light purple background */
    border-radius: 50%;
    display: inline-flex;
    /* Use inline-flex for centering */
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.first-aid__mockup-confirmation-icon i {
    font-size: 32px;
    color: #6a3de8;
    /* QuickCare purple */
}

.first-aid__mockup-confirmation-maintext {
    font-size: 1.25rem;
    font-weight: 600;
    color: #343a40;
    /* Darker text */
    margin: 0 0 5px 0;
}

.first-aid__mockup-confirmation-subtext {
    font-size: 0.95rem;
    color: #6c757d;
    /* Medium grey */
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.first-aid__mockup-confirmation-details {
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    background-color: #f8f9fa;
    /* Light background for details */
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.first-aid__mockup-confirmation-details:last-child {
    margin-bottom: 0;
}

.first-aid__detail-label {
    color: #6c757d;
    /* Medium grey */
}

.first-aid__detail-value {
    font-weight: 500;
    color: #495057;
    /* Dark grey */
}

.first-aid__detail-value--icon {
    display: flex;
    align-items: center;
    color: #6a3de8;
    /* Purple icon */
}

.first-aid__detail-value--icon i {
    font-size: 1.1rem;
    /* Adjust icon size */
}

.first-aid__mockup-confirmation-footer {
    padding: 10px 15px;
    text-align: center;
    font-size: 0.85rem;
    color: #6a3de8;
    /* Purple text */
    background-color: #f8f9fa;
    /* Match header/details bg */
    border-top: 1px solid #e8eaf6;
    font-weight: 500;
}

/* Add to your existing styles */
.required-indicator {
    color: #e53e3e;
    /* Red color for asterisk */
    font-weight: bold;
    margin-left: 4px;
}

.first-aid__form-control:focus {
    outline: none;
    border-color: #6a3de8;
    box-shadow: 0 0 0 3px rgba(106, 61, 232, 0.2);
}

/* If the default select arrow looks bad, you might need custom styling */
select.first-aid__form-control {
    appearance: none;
    /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236a3de8' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    /* Make space for the custom arrow */
}

/* Phone Validation Feedback Styles */
.first-aid__form-control.is-valid {
    border-color: #28a745;
    /* Green border for valid */
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.first-aid__form-control.is-invalid {
    border-color: #dc3545;
    /* Red border for invalid */
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

/* Hide feedback messages by default */
.invalid-feedback,
.valid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    /* Smaller font size */
}

.invalid-feedback {
    color: #dc3545;
    /* Red text */
}

.valid-feedback {
    color: #28a745;
    /* Green text */
}

/* Show feedback messages when input has the corresponding class */
.first-aid__form-control.is-invalid~.invalid-feedback,
.first-aid__form-control.is-valid~.valid-feedback {
    display: block;
}

/* Ensure focus style overrides validation styles */
.first-aid__form-control:focus {
    border-color: #6a3de8;
    box-shadow: 0 0 0 3px rgba(106, 61, 232, 0.2);
    /* Remove background validation icon on focus if it looks messy */
    background-image: none;
}

/* --- Interactive Footnote Styles --- */
.qc-metric-card__footnote-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    font-weight: bold;
    /* Make symbol more prominent */
    display: inline-block;
    vertical-align: super;
    font-size: 1em;
    margin-left: 2px;
}

.qc-metric-card__footnote-link sup {
    font-size: 1em;
}

.qc-metric-card__footnote-link-small sup {
    font-size: 0.5em !important;
    /* Smaller size for small footnote links */
}

/* Specific styling for links within the bottom footnote text */
.qc-metric-card__footnote .qc-metric-card__footnote-link {
    vertical-align: initial;
    font-size: inherit;
    margin-right: var(--qc-spacing-2);
}

.qc-metric-card__footnotes-container {
    display: flex;
    flex-direction: column;
    gap: var(--qc-spacing-3);
    /* Space between footnotes */
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.qc-metric-card__footnote {
    color: rgba(0, 0, 0, 0.85);
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0;
}

.qc-metric-card__footnote-text {
    /* Style for the targetable text span */
    display: inline;
    transition: all 0.3s ease-in-out;
    border-radius: var(--qc-radius-sm);
    padding: var(--qc-spacing-1) 0;
}

.qc-metric-card__footnote-text--highlight {
    background-color: rgba(255, 255, 255, 0.15);
    padding: var(--qc-spacing-1) var(--qc-spacing-2);
}