/* Navigation Structure */
.page-navigation {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 100;
    margin-top: 0;
    margin-bottom: 0;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-list li {
    font-size: 14px;
    color: #666;
    padding: 5px 0;
    display: inline-flex;
    align-items: center;
}

.nav-list li:not(:last-child)::after {
    content: '›';
    margin: 0 10px;
    color: #666;
    display: inline-block;
}

.nav-list a {
    color: #333;
    text-decoration: none;
    display: inline-block;
}

.nav-list a:hover {
    color: #007bff;
}

.nav-list a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-navigation {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

/* Existing styles continue below */
.seo-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.seo-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.seo-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.seo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.intro-section p, 
.what-is-section p, 
.importance-section p,
.point-item p {
    margin-bottom: 1.5em;
}

.intro-section p:last-child, 
.what-is-section p:last-child, 
.importance-section p:last-child,
.point-item p:last-child {
    margin-bottom: 0;
}

.intro-section, .what-is-section, .importance-section {
    margin-bottom: 60px;
}

.seo-key-points {
    padding: 60px 0;
    background: #ffffff;
}

.points-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.point-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.point-item h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 20px;
    color: #333333;
}

.point-item p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
    color: #666666;
}

@media (max-width: 768px) {
    .points-wrapper {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 20px;
    }
    
    .point-item {
        padding: 20px;
    }
}

.stats-box {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    min-width: 200px;
}

.stat h4 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.stat p {
    color: #666;
    margin: 0;
}

.highlights-section {
    margin: 60px 0;
}

.highlights-list ul {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #333;
}

.highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
}

.conclusion-section {
    text-align: center;
    padding: 40px 20px;
    margin-top: 30px;
}

.conclusion-section .conclusion-text {
    font-size: 1.2em;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}