/* Custom styles for Tractor Fever Services */

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000; /* Main background set to black */
    color: #e0e0e0; /* Default text color for dark background */
}

/* Custom styles for hover effects or specific elements not easily handled by Tailwind */
.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.service-item, .testimonial-item {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.service-item:hover, .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
