/* Tools Landing Page Styles */

.tools-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header section */
.tools-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-header h1 {
    color: #0D7377;
    margin: 0 0 15px 0;
    font-size: 2.2rem;
}

.tools-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Tools grid layout */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Tool card styles */
.tool-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #0D7377;
}

.tool-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0D7377 0%, #14919B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.tool-card h2 {
    color: #333;
    margin: 0 0 12px 0;
    font-size: 1.3rem;
}

.tool-card p {
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.tool-card .cta {
    color: #0D7377;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tool-card .cta::after {
    content: '\2192';
}
