/* SEO Checklist Page Specific Styles */
:root {
    --seo-primary: #1a73e8;
    --seo-secondary: #34a853;
    --seo-accent: #fbbc05;
    --seo-bg: #f8f9fa;
    --seo-card-bg: #ffffff;
    --seo-text: #202124;
    --seo-text-light: #5f6368;
    --seo-border: #dadce0;
}

.seo-page {
    background-color: var(--seo-bg);
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.seo-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-header {
    text-align: center;
    margin-bottom: 50px;
}

.seo-header h1 {
    font-size: 2.5rem;
    color: var(--seo-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.seo-header p {
    font-size: 1.1rem;
    color: var(--seo-text-light);
}

.roadmap-timeline {
    position: relative;
    padding: 20px 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--seo-border);
    border-radius: 2px;
}

.month-section {
    position: relative;
    margin-bottom: 60px;
    padding-left: 80px;
}

.month-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    background: var(--seo-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.3);
    z-index: 2;
}

.month-content {
    background: var(--seo-card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--seo-border);
    transition: transform 0.3s ease;
}

.month-content:hover {
    transform: translateY(-5px);
}

.month-title {
    font-size: 1.5rem;
    color: var(--seo-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-items {
    list-style: none;
    padding: 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed var(--seo-border);
}

.checklist-item:last-child {
    border-bottom: none;
}

.checkbox-dummy {
    width: 20px;
    height: 20px;
    border: 2px solid var(--seo-primary);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 3px;
}

.item-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--seo-text);
}

.item-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--seo-text-light);
    line-height: 1.6;
}

.local-focus {
    background: #e8f0fe;
    border-left: 4px solid var(--seo-primary);
    padding: 15px;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
}

.local-focus h5 {
    margin: 0 0 5px 0;
    color: var(--seo-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.local-focus p {
    margin: 0;
    font-size: 0.9rem;
    color: #444;
}

.seo-footer-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--seo-border);
}

@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 20px;
    }
    .month-section {
        padding-left: 60px;
    }
    .month-badge {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}
