.intro-text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 2em;
    line-height: 1.6;
}

.tool-category {
    margin-bottom: 3em;
}

    .tool-category h2 {
        color: #2c3e50;
        margin-bottom: 0.5em;
        font-size: 1.8em;
        border-bottom: 3px solid #3498db;
        padding-bottom: 0.3em;
    }

.category-description {
    color: #666;
    font-size: 1em;
    margin-bottom: 1.5em;
    font-style: italic;
}

.tool-card {
    position: relative;
    padding-bottom: 2.5em;
}

.status-badge {
    position: absolute;
    bottom: 1em;
    right: 1em;
    padding: 0.3em 0.8em;
    border-radius: 15px;
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
}

    .status-badge.available {
        background-color: #27ae60;
        color: white;
    }

    .status-badge.coming-soon {
        background-color: #f39c12;
        color: white;
    }

.tool-card.planned {
    opacity: 0.85;
    border-left: 4px solid #f39c12;
}

.tool-card.done {
    border-left: 4px solid #27ae60;
}

.seo-content {
    margin: 3em 0;
    padding: 2em;
    background-color: #f8f9fa;
    border-radius: 8px;
}

    .seo-content h2 {
        color: #2c3e50;
        margin-bottom: 1em;
    }

    .seo-content p {
        line-height: 1.8;
        color: #555;
        margin-bottom: 1em;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5em;
    margin-top: 1.5em;
}

.feature-item {
    background: white;
    padding: 1.5em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .feature-item h3 {
        color: #2c3e50;
        margin-bottom: 0.5em;
        font-size: 1.1em;
    }

    .feature-item p {
        color: #666;
        font-size: 0.95em;
        line-height: 1.6;
        margin: 0;
    }

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
