.intro-text {
    font-size: 1.15em;
    color: #555;
    margin-bottom: 2em;
    text-align: center;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin: 2em 0 3em 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1em 3em;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    }

.section-title {
    color: #2c3e50;
    font-size: 2em;
    margin: 2em 0 1em 0;
    text-align: center;
}

.view-all-section {
    text-align: center;
    margin: 3em 0;
}

.view-all-link {
    font-size: 1.3em;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5em 1em;
    border: 2px solid #667eea;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s;
}

    .view-all-link:hover {
        background: #667eea;
        color: white;
    }

.features-section {
    margin: 4em 0 3em 0;
    padding: 3em 2em;
    background: #f8f9fa;
    border-radius: 12px;
}

    .features-section h2 {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 2em;
        font-size: 2em;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
}

.feature-box {
    text-align: center;
    padding: 2em 1em;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.feature-box h3 {
    color: #2c3e50;
    margin-bottom: 0.5em;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* Add green border to tool cards like tools.html */
.tool-card {
    border-left: 4px solid #27ae60;
}

/* Category Dropdown Styles */
.category-dropdown {
    display: flex;
    min-width: 800px;
    padding: 1em;
    gap: 1em;
}

.dropdown-column {
    flex: 1;
    min-width: 180px;
}

    .dropdown-column h4 {
        color: #667eea;
        font-size: 0.9em;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0.8em 0 0.5em 0;
        padding: 0 1em;
        border-bottom: 2px solid #667eea;
        padding-bottom: 0.3em;
    }

        .dropdown-column h4:first-child {
            margin-top: 0;
        }

    .dropdown-column a {
        display: block;
        padding: 0.5em 1em;
        color: #333;
        text-decoration: none;
        font-size: 0.9em;
        transition: background 0.2s;
    }

        .dropdown-column a:hover {
            background: #f0f0ff;
            color: #667eea;
        }

@media (max-width: 1024px) {
    .category-dropdown {
        min-width: 600px;
        flex-wrap: wrap;
    }

    .dropdown-column {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .category-dropdown {
        flex-direction: column;
        min-width: 250px;
    }

    .dropdown-column {
        min-width: 100%;
    }
}
