* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #e6edf5;
    color: #875053;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px;
}

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

.header h1 {
    margin: 0;
    font-size: 60px;
    font-family: "omnes-semicond", sans-serif;
    font-weight: 700;
    color: #021738; 

}

.header p {
    margin-top: 10px;
    font-size: 20px;
    font-family: "Nunito", system-ui, sans-serif;
    color: #628395;
}

/*.header::after {
    content: "";
    display: block;
    width: 500px;
    height: 2px;
    margin: 10px auto 0;
    background: #d1d5db;
    border-radius: 2px;
}*/

/* Tool grid */
.tools {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.tool-card {
    background: #f5f3ef;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    font-family: "Nunito", system-ui, sans-serif;
    font-weight: 500;

    display: flex;
    flex-direction: column;

    transition: transform 0.15s ease, box-shadow 0.15s ease;
}



.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}

.tool-card h2 {
    margin-top: 0;
    font-size: 18px;
    font-weight: 1000;
    color: #1f2937;   /* deep gray, not black */

}

.tool-card p {
    font-size: 14px;
    color: #6b7280;
    margin-top: 2px;
}

.tool-card a {
    display: inline-block;
    margin-top: 12px;
    font-weight: 500;
    color: #3b82f6;   /* softer blue */
    text-decoration: none;
}

.tool-card span {
    font-size: 13px;
    font-weight: 500;
}


.tool-card a:hover {
    text-decoration: underline;
}

/* Buttons (reusable) */
button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;

    font-family: "Nunito", system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
}

button:hover {
    background: #1d4ed8;
}