/* SEO Content Section Styling */
.seo-content {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

[dir="rtl"] .seo-content {
    direction: rtl;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #00d4aa 0%, #00a884 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.content-block {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00d4aa 0%, #00a884 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

[dir="rtl"] .content-block::before {
    left: auto;
    right: 0;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 212, 170, 0.1);
}

.content-block:hover::before {
    transform: scaleY(1);
}

.content-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-block h3::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #00d4aa, transparent);
    margin-left: 10px;
}

[dir="rtl"] .content-block h3::after {
    margin-left: 0;
    margin-right: 10px;
    background: linear-gradient(270deg, #00d4aa, transparent);
}

.content-block p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

/* Keywords Section */
.keywords-section {
    background: #f9fafb;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.keywords-section h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #0a1628;
    margin-bottom: 30px;
    font-weight: 700;
}

.keywords-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.keyword-tag {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.keyword-tag:hover {
    background: linear-gradient(135deg, #00d4aa 0%, #00a884 100%);
    color: white;
    border-color: #00d4aa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

/* Content CTA */
.content-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #0a1628 0%, #162238 100%);
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.content-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.content-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.content-cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .seo-content {
        background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    }

    .content-block {
        background: #1f2937;
        border-color: #374151;
    }

    .content-block h3 {
        color: #f9fafb;
    }

    .content-block p {
        color: #9ca3af;
    }

    .keywords-section {
        background: #1f2937;
    }

    .keywords-section h3 {
        color: #f9fafb;
    }

    .keyword-tag {
        background: #374151;
        color: #f9fafb;
        border-color: #4b5563;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-title {
        font-size: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .content-block {
        padding: 25px;
    }

    .content-block h3 {
        font-size: 1.2rem;
    }

    .keywords-section {
        padding: 30px 20px;
    }

    .content-cta {
        padding: 40px 20px;
    }

    .content-cta h3 {
        font-size: 1.6rem;
    }

    .content-cta p {
        font-size: 1rem;
    }
}

/* Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Smooth Scroll Behavior */
.content-block {
    scroll-margin-top: 100px;
}

/* Accessibility */
.content-block:focus-within {
    outline: 2px solid #00d4aa;
    outline-offset: 4px;
}

.keyword-tag:focus {
    outline: 2px solid #00d4aa;
    outline-offset: 2px;
}