:root {
    --oldpeach: #F4CBBE;
    --peach: #F8E0C6;
    --navy: #1F2A44;
    --gold: #E8D7B8;
    --grey: #D9D9D9;
    --white: #FFFFFF;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--navy);
    background: var(--peach);
}

header {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 4px solid var(--gold);
}

img.logo {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    display: block;
}


header img.profile {
    width: 220px;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

h1 {
    margin-top: 20px;
    font-size: 2.4rem;
    color: var(--navy);
}

h2 {
    margin-top: 40px;
    color: var(--navy);
    border-left: 6px solid var(--gold);
    padding-left: 12px;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.section {
    margin-bottom: 50px;
}

ul {
    margin-top: 10px;
}

a {
    color: var(--navy);
    text-decoration: underline;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #1e3a5f; /* navy brand colour */
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.thankyou-section,
.notfound-section {
    text-align: center;
    font-size: 1.2rem;
    padding: 40px 20px;
}

.contact-form button:hover {
    background-color: #294b78;
}

.nav {
    margin: 10px 0 20px 0;
    text-align: center;
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #1e3a5f;
    font-weight: bold;
}

.nav a:hover {
    text-decoration: underline;
}

.button {
    display: inline-block;
    background-color: #1e3a5f;
    color: white;
    padding: 12px 20px;
    margin: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.button:hover {
    background-color: #294b78;
}

.button.secondary {
    background-color: #f0f0f0;
    color: #1e3a5f;
}

.button.secondary:hover {
    background-color: #e0e0e0;
}

.button {
    display: inline-block;
    background-color: #1e3a5f;
    color: white;
    padding: 12px 20px;
    margin: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.button:hover {
    background-color: #294b78;
}

.button.secondary {
    background-color: #f0f0f0;
    color: #1e3a5f;
}

.button.secondary:hover {
    background-color: #e0e0e0;
}

.gradient-bg {
    background: linear-gradient(to right, #f7c89f, #b7d8f0);
    min-height: 100vh;
}

.banner-image {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
}


.notfound-section {
    text-align: center;
    font-size: 1.2rem;
    padding: 40px 20px;
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    color: var(--navy);
}

footer img.avatar {
    width: 80px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
}