
body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

/* LEFT: LOGO + TITLE */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.brand img {
    height: 40px;
}

.brand-title {
    font-size: 20px;
    font-weight: bold;
}

/* RIGHT NAV */
nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    padding: 12px 12px;
    border-radius: 4px;
}

nav a:hover {
    background: #e6e6e6;
}


/* MAIN CENTERED CONTENT */
main {
    max-width: 800px;
    margin: 40px auto;
}

.main {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 40px;
    align-items: center;
    text-align: center;
}

.content-box {
    max-width: 700px;
}

/* FOOTER */
footer {
    background: #222;
    color: #fff;
    padding: 30px 20px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column p {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #fff;
}

.form-button {
    display: inline-block;
    padding: 12px 18px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: Arial, sans-serif;
}

.form-button:hover {
    background: #555;
}

/* MOBILE */
@media (max-width: 700px) {
    header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    nav {
        flex-wrap: wrap;
    }

    .footer-container {
        flex-direction: column;
    }
}