.tools-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.tools-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 12px;
    margin: 2rem 0;
}

.tools-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tools-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.tools-container {
    margin: 4rem 0;
}

.tool-section {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tool-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 12px;
    color: var(--white);
}

.tool-header h2 {
    color: var(--primary);
    font-size: 1.75rem;
    margin: 0;
}

.tool-description {
    margin-bottom: 2rem;
}

.tool-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.tool-description h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.tool-description ul {
    list-style: none;
    margin-left: 1rem;
}

.tool-description li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.tool-description li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.tool-info {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .tools-hero {
        padding: 2rem 1rem;
    }

    .tools-hero h1 {
        font-size: 2rem;
    }

    .tool-section {
        padding: 1.5rem;
    }

    .tool-header {
        flex-direction: column;
        text-align: center;
    }

    .tool-icon {
        margin: 0 auto;
    }
}