body {
    background: #f2f2f2;
    font-family: Arial, sans-serif;
}

.contact-box {
    width: 350px;
    margin: 60px auto;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

#result {
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.4s ease;
    margin-bottom: 10px;
}

#result div {
    padding: 8px;
}

#result div.success {
    background: #d4edda;
    color: #155724;
}

#result div.error {
    background: #f8d7da;
    color: #721c24;
}

#result.show {
    opacity: 1;
    transform: translateY(0);
}

input, textarea, button {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}

button {
    background: #3498db;
    color: white;
    border: none;
    cursor: pointer;
}
