/* style.css */

/* General Styling */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fdfcf6; /* ivory shade */
    color: #333;
}

a {
    text-decoration: none;
    color: white;
}

/* Header */
header {
    background-color: #003366; /* dark blue */
    padding: 20px;
    text-align: center;
    color: white;
    animation: slideDown 1s ease;
}

nav {
    margin-top: 10px;
}

nav a {
    margin: 0 15px;
    color: white;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 40px;
}

/* Main Content */
.container {
    padding: 40px;
    max-width: 1000px;
    margin: auto;
}

/* Feedback Form */
form {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease-in-out;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0055a5;
}

/* Animations */
@keyframes slideDown {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
