/* Drug-Free Workplace Page Styles using BEM methodology */

/* Main Variables */
:root {
    --primary-color: #6b46c1;
    --primary-dark: #553c9a;
    --primary-light: #9f7aea;
    --primary-lightest: #f5f0ff;

    --secondary-color: #4299e1;
    --secondary-dark: #3182ce;

    --success-color: #38a169;
    --warning-color: #dd6b20;
    --danger-color: #e53e3e;

    --grey-50: #f9fafb;
    --grey-100: #f3f4f6;
    --grey-200: #e5e7eb;
    --grey-300: #d1d5db;
    --grey-400: #9ca3af;
    --grey-500: #6b7280;
    --grey-600: #4b5563;
    --grey-700: #374151;
    --grey-800: #1f2937;
    --grey-900: #111827;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;

    --transition: all 0.3s ease;
}

/* General Styles */
.drug-free-workplace {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--grey-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.drug-free-workplace h1,
.drug-free-workplace h2,
.drug-free-workplace h3,
.drug-free-workplace h4,
.drug-free-workplace h5,
.drug-free-workplace h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    color: var(--grey-900);
}

.drug-free-workplace a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.drug-free-workplace a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Button Styles */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.875rem;
    text-decoration: none;
}

.button:hover {
    text-decoration: none;
}

.button--primary {
    background-color: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
}

.button--primary:hover,
.button--primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white !important;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.button--outline {
    background-color: transparent;
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.button--outline:hover,
.button--outline:focus {
    background-color: var(--primary-lightest);
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.button--block {
    display: block;
    width: 100%;
}

.button--large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

/* Hero Section */
.drug-free-workplace__hero {
    background: linear-gradient(135deg, var(--primary-lightest), white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.drug-free-workplace__hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.drug-free-workplace__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(107, 70, 193, 0.08);
    border: 1px solid rgba(107, 70, 193, 0.18);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    padding: 0.4rem 0.85rem;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.drug-free-workplace__badge .material-icons {
    font-size: 1.1rem;
}

.drug-free-workplace__title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--grey-900);
    position: relative;
}

.drug-free-workplace__title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 4rem;
    height: 0.25rem;
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.drug-free-workplace__subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--grey-600);
    max-width: 640px;
}

.drug-free-workplace__hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 1.75rem;
    max-width: 640px;
}

.hero-point {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: white;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1rem;
    box-shadow: var(--shadow-sm);
}

.hero-point .material-icons {
    color: var(--primary-color);
}

.drug-free-workplace__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
}

.drug-free-workplace__fineprint {
    margin-top: 1rem;
    color: var(--grey-600);
    font-size: 0.9rem;
}

.drug-free-workplace__hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
}

.drug-free-workplace__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Info Banner */
.drug-free-workplace__info-banner {
    background: var(--primary-color);
    color: white !important;
    padding: 1rem 0;
    text-align: center;
}

.drug-free-workplace__info-banner p {
    margin: 0;
    font-size: 1.05rem;
}

/* Main Content Layout */
.drug-free-workplace__content {
    padding: 3rem 0;
    background-color: var(--grey-50);
}

.drug-free-workplace__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Sidebar Navigation */
.drug-free-workplace__sidebar {
    position: relative;
}

.side-nav {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 2rem;
}

.side-nav__mobile-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    text-align: left;
}

.side-nav__mobile-toggle i {
    margin-right: 0.75rem;
}

.side-nav__wrapper {
    display: none;
    height: auto;
    transition: height 0.3s ease;
}

.side-nav__wrapper.active {
    display: block;
}

.side-nav__title {
    background: var(--primary-color);
    color: white !important;
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1.125rem;
    display: none;
}

.side-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-nav__link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: var(--grey-700);
    border-left: 0.25rem solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.side-nav__icon {
    margin-right: 0.75rem;
    font-size: 1.25rem;
    color: var(--grey-500);
    transition: var(--transition);
}

.side-nav__link:hover,
.side-nav__link:focus {
    background-color: var(--primary-lightest);
    color: var(--primary-color);
    text-decoration: none;
}

.side-nav__link:hover .side-nav__icon,
.side-nav__link:focus .side-nav__icon {
    color: var(--primary-color);
}

.side-nav__link--active {
    border-left-color: var(--primary-color);
    background-color: var(--primary-lightest);
    color: var(--primary-color);
    font-weight: 600;
}

.side-nav__link--active .side-nav__icon {
    color: var(--primary-color);
}

.side-nav__cta {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    text-align: center;
}

.side-nav__cta p {
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Main Content Sections */
.content-section {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section__header {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.content-section__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 0.25rem;
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.content-section__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.content-section__lead {
    font-size: 1.125rem;
    color: var(--grey-600);
    margin-bottom: 0;
    max-width: 800px;
}

/* Overview Section */
.overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--grey-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid var(--grey-200);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--primary-lightest);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.feature-card__icon i {
    font-size: 1.5rem;
}

.feature-card__title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.feature-card__text {
    margin-bottom: 0;
    color: var(--grey-600);
    font-size: 0.9rem;
}

.overview__note {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1rem;
    background: white;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.overview__note-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(66, 153, 225, 0.12);
    color: var(--secondary-dark);
}

.overview__note-title {
    margin: 0 0 0.25rem;
    font-weight: 700;
    color: var(--grey-900);
}

.overview__note-text {
    margin: 0;
    color: var(--grey-600);
}

.overview__card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.overview__card-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    color: white !important;
}

.overview__card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 0.125rem;
    background: white;
    border-radius: var(--radius-full);
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.checklist__item {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: white !important;
}

.checklist__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white !important;
    font-weight: bold;
}

.overview__card-footnote {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--grey-200);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary-color);
}

.benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-lightest);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.benefit-card__icon i {
    font-size: 1.75rem;
}

.benefit-card__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.benefit-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--grey-700);
}

.benefit-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.benefits-callout {
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.10), rgba(107, 70, 193, 0.08));
    border: 1px solid rgba(107, 70, 193, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.benefits-callout__title {
    margin: 0 0 0.25rem;
    color: var(--grey-900);
    font-size: 1.2rem;
}

.benefits-callout__text {
    margin: 0;
    color: var(--grey-700);
}

/* Implementation Process */
.implementation {
    background: var(--grey-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.implementation__timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    border-radius: var(--radius-lg);
    outline: none;
}

.timeline-step__marker {
    width: 3rem;
    height: 3rem;
    background: white;
    border: 2px solid var(--grey-300);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--grey-600);
    transition: var(--transition);
    margin-right: 1rem;
    flex-shrink: 0;
}

.timeline-step:hover .timeline-step__marker {
    border-color: var(--primary-light);
    color: var(--primary-color);
}

.timeline-step--active .timeline-step__marker {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
}

.timeline-step__title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--grey-800);
}

.timeline-step__description {
    font-size: 0.875rem;
    color: var(--grey-600);
    margin-bottom: 0;
}

.timeline-step--active .timeline-step__title {
    color: var(--primary-color);
}

.implementation__details {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--grey-200);
    position: relative;
}

.process-detail {
    display: none;
}

.process-detail--active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-detail__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-detail__list {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.process-detail__list li {
    margin-bottom: 0.5rem;
    color: var(--grey-700);
}

.process-detail__note {
    margin: 0;
    color: var(--grey-600);
}

/* Testing Options */
.pricing {
    background: var(--grey-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.pricing__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.pricing__subtitle {
    margin-bottom: 2rem;
    color: var(--grey-600);
}

.pricing__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--grey-200);
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-card--featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white !important;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.price-card__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.price-card__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-card__price span {
    font-size: 1rem;
    font-weight: 400;
}

.price-card__description {
    color: var(--grey-600);
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.pricing__additional {
    margin-top: 2rem;
}

.pricing__additional-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--grey-800);
}

.pricing__additional-list {
    padding-left: 1.5rem;
    color: var(--grey-700);
}

.pricing__additional-list li {
    margin-bottom: 0.5rem;
}

.pricing__disclaimer {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0.75rem;
    align-items: start;
    background: white;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    color: var(--grey-700);
    box-shadow: var(--shadow-sm);
}

.pricing__disclaimer .material-icons {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.pricing__disclaimer p {
    margin: 0;
    color: var(--grey-700);
}

/* Case Studies */
.case-studies {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.case-study {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--grey-200);
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.case-study__content {
    padding: 2rem;
}

.case-study__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.case-study__text {
    color: var(--grey-700);
    margin-bottom: 0;
}

.case-study__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
}

.stat__value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat__label {
    font-size: 0.875rem;
    color: var(--grey-600);
}

/* FAQ Section */
.faq {
    margin-top: 1.5rem;
}

.faq__item {
    border-bottom: 1px solid var(--grey-200);
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--grey-800);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.faq__question:hover {
    color: var(--primary-color);
}

.faq__question i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease-in-out;
}

.faq__question[aria-expanded="false"] i {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 0 1.5rem;
    color: var(--grey-600);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.3s ease;
}

.faq__question[aria-expanded="true"]+.faq__answer {
    max-height: 1000px;
    padding: 0 0 1.5rem;
}

.faq__answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.faq__answer a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.cta-section__content {
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white !important;
}

.cta-section__text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    max-width: 36rem;
    margin: 0 auto;
}

.cta-section__buttons .button--outline {
    background-color: transparent;
    color: white !important;
    border-color: white;
}

.cta-section__buttons .button--outline:hover,
.cta-section__buttons .button--outline:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
    border-color: white;
}

/* Media Queries */
@media (min-width: 576px) {
    .drug-free-workplace__hero {
        padding: 5rem 0;
    }

    .drug-free-workplace__title {
        font-size: 2.5rem;
    }

    .drug-free-workplace__cta-group {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .drug-free-workplace__hero {
        padding: 6rem 0;
    }

    .drug-free-workplace__hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .drug-free-workplace__title {
        font-size: 3rem;
    }

    .drug-free-workplace__hero-points {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 3rem;
    }

    .implementation__timeline {
        flex-direction: row;
    }

    .implementation__timeline::before {
        content: '';
        position: absolute;
        top: 1.5rem;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--grey-300);
        z-index: 1;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
        flex: 1;
    }

    .timeline-step__marker {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .case-studies {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section__buttons {
        flex-direction: row;
    }

    .side-nav__title {
        display: block;
    }

    .side-nav__mobile-toggle {
        display: none;
    }

    .side-nav__wrapper {
        display: block !important;
    }

    .benefits-callout {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .drug-free-workplace__title {
        font-size: 3.5rem;
    }

    .drug-free-workplace__layout {
        grid-template-columns: 280px 1fr;
        gap: 3rem;
    }

    .overview {
        grid-template-columns: 2fr 1fr;
    }

    .pricing__cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
.button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}