/* SEO Content Section Styles */
.seo-content-section {
    background: #fff;
    padding: 80px 20px;
    margin-bottom: 30px;
}

.seo-content-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-main-heading {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-main-intro {
    text-align: center;
    font-size: 1.2em;
    color: #5a6c7d;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Two Column Layout with Image */
.seo-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.seo-two-column.reverse {
    direction: rtl;
}

.seo-two-column.reverse > * {
    direction: ltr;
}

.seo-column-content h2 {
    font-size: 1.9em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.seo-column-content h3 {
    font-size: 1.4em;
    color: #4a90e2;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.seo-column-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.seo-column-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-column-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #5a6c7d;
    line-height: 1.6;
}

.seo-column-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #27ae60;
}

.seo-column-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.seo-column-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.seo-column-image:hover img {
    transform: scale(1.02);
}

/* Full Width Content Blocks */
.seo-full-block {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 20px;
    padding: 60px 50px;
    margin-bottom: 60px;
}

.seo-full-block h2 {
    text-align: center;
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 40px;
}

.seo-full-block p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.05em;
    max-width: 900px;
    margin: 0 auto 20px;
}

/* Use Cases Grid */
.seo-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.seo-use-case-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.seo-use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.seo-use-case-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.seo-use-case-icon.blue { background: linear-gradient(135deg, #4a90e2 0%, #667eea 100%); color: white; }
.seo-use-case-icon.purple { background: linear-gradient(135deg, #9b59b6 0%, #764ba2 100%); color: white; }
.seo-use-case-icon.green { background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); color: white; }
.seo-use-case-icon.orange { background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%); color: white; }
.seo-use-case-icon.red { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); color: white; }
.seo-use-case-icon.teal { background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%); color: white; }

.seo-use-case-card h3 {
    color: #2c3e50;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.seo-use-case-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

/* How It Works Section */
.seo-how-it-works {
    margin-bottom: 80px;
}

.seo-how-it-works h2 {
    text-align: center;
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 50px;
}

.seo-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.seo-steps-grid::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

.seo-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.seo-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.seo-step h3 {
    color: #2c3e50;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.seo-step p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Comparison Table */
.seo-comparison-section {
    margin-bottom: 80px;
}

.seo-comparison-section h2 {
    text-align: center;
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.seo-comparison-intro {
    text-align: center;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.seo-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.seo-comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    font-weight: 600;
    text-align: left;
    font-size: 1.1em;
}

.seo-comparison-table th:first-child {
    width: 35%;
}

.seo-comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #5a6c7d;
}

.seo-comparison-table tr:last-child td {
    border-bottom: none;
}

.seo-comparison-table tr:hover td {
    background: #f8f9ff;
}

.seo-comparison-table .check {
    color: #27ae60;
    font-weight: bold;
}

.seo-comparison-table .cross {
    color: #e74c3c;
}

/* FAQ Section */
.seo-faq-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 60px 50px;
    margin-bottom: 60px;
}

.seo-faq-section h2 {
    text-align: center;
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 40px;
}

.seo-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.seo-faq-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.seo-faq-item h3 {
    color: #2c3e50;
    font-size: 1.15em;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.seo-faq-item h3 i {
    color: #667eea;
    margin-top: 3px;
}

.seo-faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
    padding-left: 32px;
}

/* Tool Categories Overview */
.seo-categories-section {
    margin-bottom: 80px;
}

.seo-categories-section h2 {
    text-align: center;
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.seo-categories-intro {
    text-align: center;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.seo-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.seo-category-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-left: none;
    transition: transform 0.3s;
}

.seo-category-card:hover {
    transform: translateY(-3px);
}

.seo-category-card.border-blue { border-color: #4a90e2; }
.seo-category-card.border-purple { border-color: #9b59b6; }
.seo-category-card.border-green { border-color: #27ae60; }
.seo-category-card.border-orange { border-color: #f39c12; }
.seo-category-card.border-red { border-color: #e74c3c; }
.seo-category-card.border-teal { border-color: #16a085; }

.seo-category-card h3 {
    color: #2c3e50;
    font-size: 1.2em;
    margin-bottom: 12px;
}

.seo-category-card p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.seo-category-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-category-tools span {
    background: #f0f4ff;
    color: #667eea;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
}

/* CTA Banner */
.seo-cta-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    color: white;
    margin-top: 40px;
}

.seo-cta-banner h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.seo-cta-banner p {
    font-size: 1.2em;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.seo-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.seo-cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.seo-cta-btn.primary {
    background: white;
    color: #667eea;
}

.seo-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.seo-cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.seo-cta-btn.secondary:hover {
    background: white;
    color: #667eea;
}

/* Highlighted Text */
.seo-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 2px 8px;
    border-radius: 4px;
    color: #667eea;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .seo-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seo-two-column.reverse {
        direction: ltr;
    }

    .seo-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-steps-grid::before {
        display: none;
    }

    .seo-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .seo-content-section {
        padding: 50px 15px;
    }

    .seo-main-heading {
        font-size: 1.8em;
    }

    .seo-main-intro {
        font-size: 1.05em;
    }

    .seo-full-block,
    .seo-faq-section,
    .seo-cta-banner {
        padding: 40px 25px;
    }

    .seo-use-cases-grid {
        grid-template-columns: 1fr;
    }

    .seo-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seo-faq-grid {
        grid-template-columns: 1fr;
    }

    .seo-categories-grid {
        grid-template-columns: 1fr;
    }

    .seo-comparison-table {
        display: block;
        overflow-x: auto;
    }

    .seo-cta-banner h2 {
        font-size: 1.6em;
    }

    .seo-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .seo-cta-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
