.elementor-6344 .elementor-element.elementor-element-f9158fd{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a22473a *//* Main container for the entire tool list */
.ai-tools-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa; /* Light grey background */
    padding: 5px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

/* Introduction section styling */
.ai-tools-container .intro-section {
    text-align: center;
    margin-bottom: 40px;
}

.ai-tools-container .intro-section h1 {
    color: #212529;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ai-tools-container .intro-section p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Styling for each category section */
.ai-tools-container .ai-category-section {
    margin-bottom: 40px;
}

/* Category title styling */
.ai-tools-container .category-title {
    color: #343a40;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
}

/* Grid layout for the tools */
.ai-tools-container .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Individual tool card styling */
.ai-tools-container .tool-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Hover effect for the tool cards */
.ai-tools-container .tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

/* Tool name styling */
.ai-tools-container .tool-card .tool-name {
    color: #007bff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Tool description styling */
.ai-tools-container .tool-card .tool-description {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1; 
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .ai-tools-container .intro-section h1 {
        font-size: 2rem;
    }
    .ai-tools-container .category-title {
        font-size: 1.5rem;
    }
    .ai-tools-container .tools-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */