@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary: #1e3a8a; /* Deep Academic Blue */
    --secondary: #facc15; /* Education Gold */
    --bg: #f8fafc;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: var(--primary);
}

.container {
    flex: 1;
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-radius: 8px;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button, .btn {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

button:hover, .btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

.footer {
    text-align: center;
    padding: 20px;
    background: var(--primary);
    color: white;
    font-size: 0.9em;
}

.footer a {
    color: var(--secondary);
}