/* Custom styles for Hemophilia Treatment Centre */
body {
    line-height: 1.6;
}

header nav ul li a {
    transition: all 0.3s ease;
}

header nav ul li a:hover {
    color: #2ECC71;
}

section {
    scroll-margin-top: 80px;
}

input, textarea {
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

button:hover {
    transform: translateY(-2px);
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    h2 {
        font-size: 1.75rem;
    }
}
/* Add to existing style.css */
#form-message {
    min-height: 1.5rem; /* Ensure space for message */
    transition: color 0.3s ease;
}