/* Month One specific styles */

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 3rem 0;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--secondary-color);
    font-weight: 500;
}

.feature-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Add specific rule for the second feature section to reverse the order */
.feature-section:nth-of-type(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-image {
    flex: 1;
    background: var(--light-bg);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.02);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-description {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 2rem;
    width: 1rem;
    height: 1rem;
    background: var(--accent-color);
    border-radius: 50%;
}

.timeline-week {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Outcomes and Solution grid layout */
.outcomes-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .feature-section {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .feature-section:nth-of-type(even) {
        flex-direction: column-reverse;
    }

    .feature-content, .feature-image {
        width: 100%;
    }

    .metrics {
        gap: 1rem;
        margin: 2rem 0;
    }

    .metric-card {
        padding: 1.5rem;
    }

    .metric-value {
        font-size: 2rem;
    }

    .metric-label {
        font-size: 0.9rem;
    }
    
    .outcomes-solution-grid {
        grid-template-columns: 1fr;
    }
}
