/* Tool vs Tool - Site-specific styles */

/* Background gradient */
body {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Heading gradient */
h1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for browsers that don't support background-clip */
}

/* Feature list checkmark color */
.features li:before {
    color: #f5576c;
}

