/* Index page specific styles */
/* This file was recreated as a placeholder to prevent 404 errors */

/* Additional page-specific styles can be added here */

body {
    min-height: 100vh;
}

/* Ensure proper rendering */
img {
    max-width: 100%;
    height: auto;
}

/* Form improvements */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    box-sizing: border-box;
    font-family: inherit;
}

/* Button hover effects */
button,
input[type="submit"] {
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
    opacity: 0.9;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Responsive improvements */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}
