:root {
    /* New Modern & Dignified Palette */
    --color-background: #FAFAFA;
    --color-surface: #FFFFFF;
    --color-text-primary: #343846;
    --color-text-secondary: #5C6773;
    --color-border: #E2E4E8;
    
    /* Accents */
    --color-accent-primary: #ff497c; /* Vibrant pink accent */
    --color-accent-hover: #e64270;
    --color-accent-subtle: #fff0f4;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    max-width: 640px; 
    margin: 60px auto 100px auto;
    padding: 0 24px;
    color: var(--color-text-primary);
    background-color: var(--color-background);
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
}

header .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: opacity 0.2s;
}

header .logo:hover {
    opacity: 0.7;
}

header .logo img {
    height: 36px;
    width: 36px;
}

footer {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: left;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

h1 { 
    font-size: 2.5rem; 
    font-weight: 700;
    margin-bottom: 1.5rem; 
    letter-spacing: -1px;
    color: var(--color-text-primary);
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--color-text-primary);
}

.step-meta {
    color: var(--color-accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

p, li { 
    font-size: 1.1rem;
    margin-bottom: 1.5rem; 
    color: var(--color-text-secondary);
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

li {
    margin-bottom: 0.75rem;
}

.action-zone {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-accent-primary);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    border-radius: 8px;
}

h3 {
    margin-top: 0;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

input, textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    background: var(--color-background);
    color: var(--color-text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 0 3px var(--color-accent-subtle);
    background: var(--color-surface);
}

button {
    background: var(--color-accent-primary);
    color: #FFFFFF;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    width: 100%;
}

button:hover { 
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    margin-top: 1rem;
    background: var(--color-surface);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border-radius: 6px;
    overflow: hidden;
}

th, td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    vertical-align: top;
}

th {
    font-weight: 600;
    background: var(--color-background);
    color: var(--color-text-primary);
}

td {
    color: var(--color-text-secondary);
}

.nav {
    margin-bottom: 3rem;
}

.nav a, .action-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: opacity 0.2s;
}

.nav a:hover, .action-link:hover {
    opacity: 0.7;
}

.australiana-scene {
    margin-top: 4rem;
    margin-bottom: -1.5rem;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.australiana-scene svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 35vh;
}

/* Footer Layout */
footer .footer-copyright {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

footer .footer-brand {
    display: inline-flex;
    align-items: center;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 600;
}

footer .footer-brand img {
    height: 18px;
    margin-right: 8px;
    /* Ensure the image aligns perfectly with the text */
    vertical-align: middle; 
}

footer .divider {
    color: var(--color-border);
    margin: 0 0.25rem;
}

footer .footer-about {
    color: var(--color-accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
    letter-spacing: 0.2px;
}

footer .footer-about:hover {
    opacity: 0.7;
}

/* Feedback messages */
.form-feedback {
    margin-top: 16px;
    padding: 12px 16px;
    font-size: 0.9rem;
    display: none;
    border-radius: 4px;
}
.form-feedback.success {
    background: #eafaf1;
    color: #1a7a40;
    border-left: 4px solid #27ae60;
}
.form-feedback.error {
    background: #fdf0f0;
    color: #922;
    border-left: 4px solid #e1201d;
}
