/* ---------------- BASIC RESET ---------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* ---------------- HEADER ---------------- */
header {
    background-color: #0073e6;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

/* ---------------- ENQUIRY FORM ---------------- */
.enquiry-form {
    background-color: #fff;
    padding: 30px 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.enquiry-form h2 {
    margin-bottom: 15px;
    color: #0073e6;
}

.enquiry-form p {
    margin-bottom: 20px;
}

.enquiry-form input,
.enquiry-form textarea,
.enquiry-form button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.enquiry-form button {
    background-color: #0073e6;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.enquiry-form button:hover {
    background-color: #005bb5;
}

/* ---------------- CONTENT SECTIONS ---------------- */
section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

section h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #0073e6;
}

section p {
    margin-bottom: 15px;
}

section ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* ---------------- FOOTER NAVIGATION ---------------- */
.footer-nav {
    background-color: #f1f1f1;
    padding: 15px 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow-x: auto; /* allow horizontal scroll on very small screens */
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap; /* keep links in a single row */
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
    font-size: 1em;
    white-space: nowrap; /* prevent text wrapping */
}

.footer-nav ul li a:hover {
    text-decoration: underline;
}

/* ---------------- FOOTER ---------------- */
footer {
    background-color: #0073e6;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

/* ---------------- BOTTOM STICKY TFN ---------------- */
.sticky-tfn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0073e6;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

.sticky-tfn a {
    color: #fff;
    text-decoration: none;
}

/* ---------------- LINKS ---------------- */
a {
    color: #0073e6;
}

a:hover {
    color: #005bb5;
}

/* ---------------- RESPONSIVE DESIGN ---------------- */
@media (max-width: 1024px) {
    section {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    header {
        justify-content: center;
        text-align: center;
    }

    section h2 {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .enquiry-form {
        padding: 20px 15px;
    }

    section {
        padding: 20px 15px;
    }

    /* horizontal scroll for footer nav on small screens */
    .footer-nav ul {
        justify-content: flex-start;
    }
}
