/* Free SEO Tools List Page Styles */

.free-seo-tools-wrapper {
    background-color: var(--color-base, #F9F9F9);
    padding: 60px 0 100px;
    min-height: 80vh;
}

.free-seo-tools-wrapper .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.free-seo-tools-hero {
    text-align: center;
    margin-bottom: 60px;
}

.free-seo-tools-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-main, #333333);
    margin-bottom: 15px;
}

.free-seo-tools-hero .intro-text {
    font-size: 1.1rem;
    color: var(--color-text, #333333);
    opacity: 0.8;
}

/* Tool Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.tool-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: #e6f6fa;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand, #229ebd);
}

.tool-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-main, #333333);
    margin-bottom: 15px;
}

.tool-card p {
    font-size: 1rem;
    color: var(--color-text, #333333);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.btn-tool {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-brand, #229ebd);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.tool-card:hover .btn-tool {
    background-color: #1a7a94;
    /* Darker shade of brand color */
}

/* SEO Content Area */
.seo-content-area {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.seo-content-area h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-main, #333333);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--color-brand, #229ebd);
    padding-bottom: 10px;
    display: inline-block;
}

.seo-content-area h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--color-main, #333333);
}

.seo-content-area p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--color-text, #333333);
}

.seo-content-area ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.seo-content-area ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .free-seo-tools-wrapper {
        padding: 40px 0 80px;
    }

    .free-seo-tools-hero h1 {
        font-size: 2rem;
    }

    .seo-content-area {
        padding: 30px;
    }
}