/* Respirator Fit Testing Page Styles */
.respirator-testing {
    --rt-primary: var(--qc-color-primary);
    --rt-primary-light: var(--qc-color-primary-light);
    --rt-primary-dark: var(--qc-color-primary-dark);
    --rt-accent: #2eca8b;
    --rt-secondary: #00b8d4;
    --rt-danger: #ff5252;
    --rt-text-dark: #1a2a42;
    --rt-text-medium: #4a5568;
    --rt-text-light: #718096;
    --rt-bg-white: #ffffff;
    --rt-bg-light: #f7f9fc;
    --rt-bg-gray: #edf2f7;
    --rt-border: #e2e8f0;
    --rt-transition: all 0.3s ease;
    --rt-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --rt-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --rt-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --rt-radius-sm: 4px;
    --rt-radius-md: 8px;
    --rt-radius-lg: 12px;
}

/* Hero Section */
.rt-hero {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95), rgba(106, 61, 232, 0.9)),
        url('https://cdn.goquickcare.com/respirator-fit-testing-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 4rem 0;
    color: white;
    position: relative;
    border-radius: 0 0 var(--rt-radius-lg) var(--rt-radius-lg);
    overflow: hidden;
}

.rt-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--rt-primary-light), var(--rt-primary-dark));
}

.rt-hero__container {
    position: relative;
    z-index: 2;
}

.rt-hero__content {
    max-width: 860px;
}

.rt-hero__eyebrow {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.rt-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.rt-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 1.75rem;
    opacity: 0.92;
    max-width: 760px;
    line-height: 1.6;
}

.rt-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 0 2rem 0;
    padding: 0;
    list-style: none;
}

.rt-hero__highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.12);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
}

.rt-hero__highlight .material-icons {
    font-size: 1.1rem;
    opacity: 0.95;
}

.rt-hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.rt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--rt-radius-md);
    text-decoration: none;
    transition: var(--rt-transition);
    cursor: pointer;
    gap: 0.5rem;
}

.rt-btn--primary {
    background-color: var(--rt-primary);
    color: white;
    border: 2px solid var(--rt-primary);
}

.rt-btn--primary:hover {
    background-color: var(--rt-primary-dark);
    border-color: var(--rt-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--rt-shadow-md);
    color: white;
}

.rt-btn--outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.rt-btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: var(--rt-shadow-md);
    color: white;
}

.rt-btn__icon {
    font-size: 1.25rem;
}

/* Section header shared */
.rt-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.rt-section__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--rt-text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.rt-section__title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--rt-primary-light), var(--rt-primary-dark));
    border-radius: 2px;
}

.rt-section__subtitle {
    font-size: 1.125rem;
    color: var(--rt-text-medium);
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Importance */
.rt-importance {
    padding: 5rem 0;
}

.rt-importance__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rt-importance__card {
    background-color: white;
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
    transition: var(--rt-transition);
    box-shadow: var(--rt-shadow-sm);
    border: 1px solid var(--rt-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rt-importance__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rt-shadow-md);
}

.rt-importance__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.rt-importance__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rt-importance__card:hover .rt-importance__image img {
    transform: scale(1.05);
}

.rt-importance__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rt-importance__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--rt-text-dark);
}

.rt-importance__description {
    color: var(--rt-text-medium);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Mobile Service */
.rt-mobile-service {
    padding: 5rem 0;
    background-color: var(--rt-bg-light);
    position: relative;
}

.rt-mobile-service__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rt-mobile-service__content {
    display: flex;
    flex-direction: column;
}

.rt-mobile-service__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--rt-text-dark);
    margin-bottom: 1rem;
}

.rt-mobile-service__text {
    color: var(--rt-text-medium);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.rt-mobile-service__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    gap: 0.75rem;
}

.rt-mobile-service__bullets li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: var(--rt-text-medium);
    line-height: 1.6;
}

.rt-mobile-service__bullets .material-icons {
    color: var(--rt-primary);
    margin-top: 0.15rem;
    font-size: 1.2rem;
}

.rt-mobile-service__image {
    position: relative;
}

.rt-mobile-service__img {
    width: 100%;
    border-radius: var(--rt-radius-lg);
    box-shadow: var(--rt-shadow-md);
    transition: var(--rt-transition);
}

.rt-mobile-service__img:hover {
    transform: scale(1.02);
    box-shadow: var(--rt-shadow-lg);
}

.rt-mobile-service__badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: linear-gradient(135deg, var(--rt-primary), var(--rt-primary-dark));
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: var(--rt-radius-md);
    box-shadow: var(--rt-shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rt-mobile-service__icon {
    font-size: 1.25rem;
}

/* OSHA Compliance */
.rt-osha-compliance {
    padding: 6rem 0;
}

.rt-osha-compliance__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rt-osha-compliance__image-container {
    position: relative;
}

.rt-osha-compliance__image {
    width: 100%;
    border-radius: var(--rt-radius-lg);
    box-shadow: var(--rt-shadow-md);
}

.rt-osha-compliance__seal {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rt-primary), var(--rt-primary-dark));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--rt-shadow-md);
    border: 3px solid white;
    font-size: 0.875rem;
    text-align: center;
}

.rt-osha-compliance__seal-icon {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.rt-osha-compliance__content {
    display: flex;
    flex-direction: column;
}

.rt-osha-compliance__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--rt-text-dark);
    margin-bottom: 1rem;
}

.rt-osha-compliance__text {
    color: var(--rt-text-medium);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.rt-osha-compliance__requirements {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.rt-osha-compliance__requirement {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.rt-osha-compliance__requirement-icon {
    background-color: rgba(106, 61, 232, 0.1);
    color: var(--rt-primary);
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.rt-osha-compliance__requirement-content {
    flex-grow: 1;
}

.rt-osha-compliance__requirement-title {
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--rt-text-dark);
}

.rt-osha-compliance__requirement-text {
    color: var(--rt-text-medium);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* Testing Methods */
.rt-testing-methods {
    padding: 5rem 0;
    background-color: var(--rt-bg-light);
}

.rt-testing-methods__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rt-method-card {
    background-color: white;
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
    transition: var(--rt-transition);
    box-shadow: var(--rt-shadow-sm);
    border: 1px solid var(--rt-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rt-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rt-shadow-md);
}

.rt-method-card__header {
    background: linear-gradient(135deg, var(--rt-primary-light), var(--rt-primary-dark));
    color: white;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rt-method-card__icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.rt-method-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.rt-method-card__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rt-method-card__description {
    color: var(--rt-text-medium);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.rt-method-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rt-method-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.rt-method-card__feature-icon {
    color: var(--rt-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.rt-method-card__feature-text {
    color: var(--rt-text-medium);
    font-size: 0.925rem;
    line-height: 1.55;
}

/* Process */
.rt-process {
    padding: 5rem 0;
}

.rt-process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rt-process__step {
    background-color: white;
    border-radius: var(--rt-radius-lg);
    padding: 2rem;
    box-shadow: var(--rt-shadow-sm);
    border: 1px solid var(--rt-border);
    transition: var(--rt-transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.rt-process__step:hover {
    transform: translateY(-5px);
    box-shadow: var(--rt-shadow-md);
}

.rt-process__step-number {
    background-color: var(--rt-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.rt-process__step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--rt-text-dark);
    margin-bottom: 0.75rem;
}

.rt-process__step-description {
    color: var(--rt-text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.rt-process__step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -21px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rt-primary);
    font-size: 2rem;
    z-index: 3;
    opacity: 0.6;
}

/* Benefits */
.rt-benefits {
    padding: 5rem 0;
    background-color: var(--rt-bg-light);
}

.rt-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rt-benefit-card {
    background-color: white;
    border-radius: var(--rt-radius-lg);
    padding: 2rem;
    box-shadow: var(--rt-shadow-sm);
    border: 1px solid var(--rt-border);
    transition: var(--rt-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--rt-primary);
}

.rt-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rt-shadow-md);
}

.rt-benefit-card__icon {
    width: 60px;
    height: 60px;
    background-color: rgba(106, 61, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--rt-primary);
    font-size: 1.75rem;
}

.rt-benefit-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rt-text-dark);
    margin-bottom: 0.75rem;
}

.rt-benefit-card__description {
    color: var(--rt-text-medium);
    line-height: 1.7;
    flex-grow: 1;
    margin: 0;
}

/* Included / Prep */
.rt-included {
    padding: 5rem 0;
}

.rt-included__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 3rem;
}

.rt-included__panel {
    background: white;
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius-lg);
    box-shadow: var(--rt-shadow-sm);
    padding: 2rem;
}

.rt-included__panel h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--rt-text-dark);
    margin-bottom: 1rem;
}

.rt-included__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.rt-included__list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: var(--rt-text-medium);
    line-height: 1.65;
}

.rt-included__list .material-icons {
    color: var(--rt-primary);
    font-size: 1.2rem;
    margin-top: 0.15rem;
}

.rt-included__note {
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: var(--rt-radius-md);
    background: var(--rt-bg-light);
    border: 1px dashed rgba(106, 61, 232, 0.25);
    color: var(--rt-text-medium);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* Pricing */
.rt-pricing {
    padding: 5rem 0;
}

.rt-pricing__cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.rt-pricing-card {
    background-color: white;
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--rt-shadow-sm);
    border: 1px solid var(--rt-border);
    transition: var(--rt-transition);
    display: flex;
    flex-direction: column;
}

.rt-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rt-shadow-md);
}

.rt-pricing-card--featured {
    transform: scale(1.05);
    border-color: var(--rt-primary);
    z-index: 10;
    box-shadow: var(--rt-shadow-md);
}

.rt-pricing-card--featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--rt-shadow-lg);
}

.rt-pricing-card__header {
    background: linear-gradient(135deg, var(--rt-primary-light), var(--rt-primary-dark));
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.rt-pricing-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: white;
    color: var(--rt-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.rt-pricing-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.rt-pricing-card__subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.rt-pricing-card__price-container {
    margin: 1.5rem 0 1rem;
}

.rt-pricing-card__price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.rt-pricing-card__period {
    font-size: 0.875rem;
    opacity: 0.85;
}

.rt-pricing-card__content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rt-pricing-card__features {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.rt-pricing-card__feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--rt-text-medium);
    line-height: 1.55;
}

.rt-pricing-card__feature-icon {
    color: var(--rt-primary);
    margin-right: 0.75rem;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.rt-pricing-card__cta {
    margin-top: auto;
}

.rt-btn--full {
    width: 100%;
}

.rt-pricing__fineprint {
    max-width: 900px;
    margin: 2rem auto 0;
    color: var(--rt-text-medium);
    background: var(--rt-bg-light);
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius-lg);
    padding: 1.25rem 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ */
.rt-faq {
    padding: 5rem 0;
    background-color: var(--rt-bg-light);
}

.rt-faq__container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.rt-accordion__item {
    background-color: white;
    border-radius: var(--rt-radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--rt-shadow-sm);
    border: 1px solid var(--rt-border);
}

.rt-accordion__header {
    margin: 0;
}

.rt-accordion__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    background-color: white;
    border: none;
    text-align: left;
    font-weight: 700;
    color: var(--rt-text-dark);
    cursor: pointer;
    font-size: 1.05rem;
    transition: var(--rt-transition);
}

.rt-accordion__button:hover {
    background-color: rgba(106, 61, 232, 0.05);
}

.rt-accordion__button[aria-expanded="true"] {
    background-color: var(--rt-primary);
    color: white;
}

.rt-accordion__icon {
    font-size: 1.25rem;
    transition: var(--rt-transition);
}

.rt-accordion__button[aria-expanded="true"] .rt-accordion__icon {
    transform: rotate(180deg);
}

.rt-accordion__body {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.rt-accordion__body[aria-hidden="false"] {
    max-height: 1000px;
    padding: 1.25rem;
    border-top: 1px solid var(--rt-border);
}

.rt-accordion__content {
    color: var(--rt-text-medium);
    line-height: 1.85;
}

.rt-accordion__content ul {
    margin-bottom: 0;
}

/* Service Areas Section */
.service-areas-section {
    background-color: var(--rt-bg-light);
    padding: 4rem 0;
    margin: 4rem 0;
}

/* CTA */
.rt-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--rt-primary-dark), var(--rt-primary));
    color: white;
    text-align: center;
}

.rt-cta__content {
    max-width: 800px;
    margin: 0 auto;
}

.rt-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.rt-cta__text {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.92;
    line-height: 1.6;
}

.rt-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.rt-btn--white {
    background-color: white;
    color: var(--rt-primary);
    border: 2px solid white;
}

.rt-btn--white:hover {
    background-color: rgba(255, 255, 255, 0.92);
    transform: translateY(-3px);
    box-shadow: var(--rt-shadow-md);
    color: var(--rt-primary-dark);
}

.rt-btn--ghost {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.rt-btn--ghost:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: var(--rt-shadow-md);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {

    .rt-mobile-service__grid,
    .rt-osha-compliance__grid,
    .rt-included__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .rt-mobile-service__image,
    .rt-osha-compliance__image-container {
        order: -1;
    }

    .rt-process__step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .rt-hero {
        padding: 3rem 0;
        text-align: center;
    }

    .rt-hero__content {
        margin: 0 auto;
    }

    .rt-hero__cta {
        justify-content: center;
    }

    .rt-hero__highlights {
        justify-content: center;
    }

    .rt-mobile-service__badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .rt-osha-compliance__seal {
        top: -15px;
        right: -15px;
        width: 90px;
        height: 90px;
        font-size: 0.75rem;
    }

    .rt-osha-compliance__seal-icon {
        font-size: 1.25rem;
    }

    .rt-pricing-card--featured {
        transform: none;
    }

    .rt-pricing-card--featured:hover {
        transform: translateY(-5px);
    }

    .rt-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .rt-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    .rt-section__title {
        font-size: 1.5rem;
    }

    .rt-section__subtitle {
        font-size: 1rem;
    }

    .rt-cta__title {
        font-size: 1.75rem;
    }

    .rt-cta__text {
        font-size: 1.05rem;
    }
}