:root {
    /* Ohio Flag Color Theme */
    --ohio-red: #BF0D3E;
    /* Official Ohio Burgee Red */
    --ohio-blue: #00205B;
    /* Official Ohio Burgee Blue */
    --ohio-white: #FFFFFF;

    /* Theme Variables mapped */
    --primary-red: var(--ohio-red);
    --primary-blue: var(--ohio-blue);
    --accent-gold: #FFB81C;
    /* Retaining gold for contrast/accent */
    --dark-navy: #001030;
    /* Slightly darker than Ohio Blue for backgrounds */
    --light-gray: #F8F9FA;
    --medium-gray: #555555;
    --white: var(--ohio-white);
    --success-green: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--dark-navy);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

/* Hero Section */
/* Hero Section */
.hero {
    background: radial-gradient(circle at top right, #002d72 0%, var(--ohio-blue) 40%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 140px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out;
}

.hero .subtitle {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-gold);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .tagline {
    font-size: clamp(16px, 2vw, 22px);
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 60px auto 0;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1.4s ease-out calc(0.6s + var(--delay)) both;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--ohio-red);
    /* Ohio Theme Accent */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 20px;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-toggle {
    display: none;
    /* Hidden on Desktop */
}

nav a {
    color: var(--ohio-blue);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

nav a:hover {
    background: var(--ohio-red);
    color: var(--white);
    border-color: var(--ohio-red);
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--ohio-blue);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--ohio-red);
    border-radius: 2px;
}

h3 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--ohio-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

/* Challenge Section */
.challenge {
    background: linear-gradient(135deg, var(--ohio-red) 0%, #8a092d 100%);
    color: var(--white);
}

.challenge h2 {
    color: var(--white);
}

.challenge h2::after {
    background: var(--accent-gold);
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.challenge-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.challenge-card .challenge-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: -20px;
    right: 20px;
}

.challenge-list {
    list-style: none;
    margin-top: 20px;
}

.challenge-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.8;
}

.challenge-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 18px;
}

/* District Analysis */
.district {
    background: var(--light-gray);
}

.district-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.district-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--ohio-blue);
}

.district-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--ohio-red);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.district-card ul {
    list-style: none;
}

.district-card li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: var(--medium-gray);
    font-size: 15px;
}

.district-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ohio-blue);
    font-weight: 700;
}

/* Overview Section */
.overview {
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.overview-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--ohio-red);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.overview-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--ohio-blue);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.overview-card p {
    color: var(--medium-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Timeline Section */
.timeline {
    background: var(--light-gray);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px 0;
}

/* Vertical Line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background: rgba(191, 13, 62, 0.2);
    /* Faded Ohio Red */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 1;
}

.timeline-phase-header {
    background: var(--dark-navy);
    color: var(--accent-gold);
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    padding: 15px;
    border-radius: 8px;
    margin: 60px 0 40px;
    /* Increased top margin for separation */
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--ohio-red);
    position: relative;
    z-index: 5;
    clear: both;
}



/* Timeline Outcome */
/* Timeline Outcome */
.timeline-outcome {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 32, 91, 0.04);
    border-radius: 6px;
    border-left: 4px solid var(--success-green);
    font-size: 14px;
    color: var(--dark-navy);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.timeline-outcome strong {
    color: var(--ohio-blue);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content:first-child {
    grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-dot {
    grid-column: 2;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 4px solid var(--ohio-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--ohio-red);
    box-shadow: 0 0 0 4px rgba(191, 13, 62, 0.1);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--ohio-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--ohio-red);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.timeline-content .week-label {
    font-size: 14px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.timeline-content ul {
    list-style: none;
    margin-top: 15px;
}

.timeline-content li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: var(--medium-gray);
    font-size: 15px;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ohio-red);
    font-weight: bold;
}

/* Content Details */
.content-details {
    background: var(--ohio-blue);
    color: var(--white);
}

.content-details h2 {
    color: var(--white);
}

.content-details h2::after {
    background: var(--accent-gold);
}

.content-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-category h3 {
    color: var(--accent-gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.content-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.content-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

.content-item-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

/* Deliverables Grid (New) */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.deliverable-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-top: 5px solid var(--ohio-red);
}

.deliverable-box:hover {
    transform: translateY(-5px);
}

.deliverable-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--ohio-blue);
    line-height: 1;
    margin-bottom: 10px;
}

.deliverable-label {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ohio-red);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.deliverable-description {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.5;
}

.content-item-count {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 5px;
}

.content-item-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Competitors */
.competitors {
    background: var(--white);
}

.competitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.competitor-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid var(--ohio-red);
}

.competitor-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--ohio-blue);
    margin-bottom: 15px;
}

.competitor-label {
    background: var(--ohio-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.competitor-info {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.competitor-weakness {
    background: rgba(191, 13, 62, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

/* Investment Section */
.investment {
    background: var(--ohio-red);
    color: var(--white);
    text-align: center;
}

.investment h2 {
    color: var(--white);
}

.investment h2::after {
    background: var(--accent-gold);
}

.investment-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 10vw, 120px);
    color: var(--accent-gold);
    margin: 30px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.investment-breakdown {
    max-width: 650px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 4px;
    border-bottom: 6px solid var(--ohio-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    color: var(--dark-navy);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 18px;
}

.breakdown-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid var(--accent-gold);
}

/* Info Box */
.info-box {
    background: rgba(0, 32, 91, 0.05);
    /* Ohio Blue Tint */
    border-left: 4px solid var(--ohio-blue);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box strong {
    color: var(--ohio-blue);
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

/* Footer */
footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-top: 5px solid var(--ohio-red);
}

footer p {
    opacity: 0.7;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {

    /* Global Spacing */
    section {
        padding: 50px 15px;
    }

    h2 {
        font-size: 36px;
    }

    /* Hero Mobile */
    .hero {
        padding: 100px 15px 60px;
    }

    .hero h1 {
        font-size: 48px;
    }

    /* Navigation Mobile */
    /* Navigation Mobile */
    nav {
        position: sticky;
        /* Fixed on screen (User requested static/stationary) */
        top: 0;
        z-index: 1000;
        padding: 10px;
        background: var(--white);
        /* Ensure background covers content */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        /* Add shadow for separation */
    }

    .menu-toggle {
        display: block;
        background: none;
        border: 2px solid var(--ohio-red);
        color: var(--ohio-red);
        font-size: 24px;
        cursor: pointer;
        padding: 5px 12px;
        border-radius: 4px;
        margin: 0 auto;
        /* Center button */
        width: fit-content;
    }

    nav ul {
        display: none;
        /* Hide by default */
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px 0;
        background: var(--white);
        width: 100%;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: 10px;
    }

    nav ul.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        border: none;
        background: rgba(0, 32, 91, 0.03);
        border-radius: 4px;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }



    /* Tables & Financials Mobile */
    .metrics-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
    }

    .metrics-table table {
        min-width: 500px;
        /* Force scroll */
    }

    .investment-breakdown {
        padding: 25px;
        margin: 20px 0;
    }

    .breakdown-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        text-align: left;
    }

    .breakdown-item span:last-child {
        font-weight: 700;
        color: var(--ohio-red);
    }

    /* Content Grids Mobile */
    .challenge-grid,
    .district-info,
    .overview-grid,
    .community-grid,
    .team-grid,
    .why-us-grid,
    .competitor-grid,
    .deliverables-grid,
    .content-items {
        grid-template-columns: 1fr;
        /* Force single column */
    }

    .stat-box {
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {

    /* Timeline Mobile Adjustments */
    .timeline-container::after {
        left: 20px;
        /* Move line to left */
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-left: 50px;
        /* Space for line */
    }

    .timeline-item:nth-child(even) .timeline-content:first-child {
        grid-column: 1;
    }

    .timeline-dot {
        position: absolute;
        left: 0;
        margin: 0;
    }

    .timeline-phase-header {
        font-size: 24px;
        margin: 40px 0 30px;
        padding: 10px;
    }
}

/* Community Section */
.community {
    background: var(--light-gray);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.community-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-top: 5px solid var(--ohio-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
}

.community-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.community-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--ohio-red);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.community-card ul {
    list-style: none;
    padding: 0;
}

.community-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.5;
}

.community-card li::before {
    content: "•";
    color: var(--accent-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Team Section */
.team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-role {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--ohio-blue);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.team-responsibility {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    background: var(--dark-navy);
    color: var(--white);
}

.why-us h2 {
    color: var(--white);
}

.why-us h2::after {
    background: var(--accent-gold);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-us-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.why-us-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: rgba(255, 184, 28, 0.2);
    /* Accent Gold faint */
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.why-us-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
    padding-right: 40px;
    /* space for number */
}

.why-us-item p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Next Steps Section */
.next-steps {
    background: var(--light-gray);
}

.steps-timeline {
    max-width: 800px;
    margin: 50px auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: var(--ohio-red);
}

.step-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--ohio-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--ohio-red);
    flex-shrink: 0;
    z-index: 2;
    margin-right: 30px;
}

.step-content {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.step-content h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--ohio-blue);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.step-content p {
    color: var(--medium-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--ohio-red) 0%, #8a092d 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.cta h2 {
    color: var(--white);
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 20px;
}

.cta h2::after {
    display: none;
}

.cta-text {
    font-size: 24px;
    margin-bottom: 30px;
    font-family: 'Crimson Pro', serif;
}

.cta-date {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--ohio-blue);
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
}

/* Metrics Table */
.metrics-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.metrics-table th {
    background: var(--ohio-blue);
    color: var(--white);
    padding: 20px;
    text-align: left;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
}

.metrics-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    color: var(--dark-navy);
    font-weight: 500;
}

.metrics-table tr:last-child td {
    border-bottom: none;
    font-weight: 700;
    color: var(--ohio-red);
    background: rgba(191, 13, 62, 0.05);
}

.metrics-table tr:nth-child(even) {
    background: #f9f9f9;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}