/* ============================= */
/* Reset */
/* ============================= */

* {
    box-sizing: border-box;
}

/* ============================= */
/* Base Layout */
/* ============================= */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #f5f7f9;
    color: #1f2933;
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* ============================= */
/* Navigation */
/* ============================= */

.nav {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e4e7eb;
}

.nav-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: center;   /* ALWAYS centred */
    align-items: center;
    gap: 30px;
}

.nav-inner a {
    text-decoration: none;
    color: #324A41;
    font-weight: 600;
    font-size: 15px;
}

.nav-inner a:hover {
    opacity: 0.7;
}

/* ============================= */
/* Logo & Headings */
/* ============================= */

.logo {
    width: 100%;
    max-width: 480px;
    height: auto;
    margin-bottom: 40px;
}

h1 {
    font-size: 34px;
    margin-bottom: 15px;
}

.intro {
    font-size: 19px;
    color: #52606d;
    max-width: 750px;
    margin: 0 auto 45px auto;
    line-height: 1.6;
}

/* ============================= */
/* Buttons */
/* ============================= */

.button,
.download-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #324A41;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.button:hover,
.download-btn:hover {
    background-color: #243832;
}

/* ============================= */
/* Downloads Page */
/* ============================= */

.download-list {
    margin-top: 40px;
}

.item {
    margin-bottom: 45px;
}

.item h2 {
    margin-bottom: 15px;
}

/* ============================= */
/* Iframe (Form Page) */
/* ============================= */

.form-container {
    max-width: 900px;
    margin: 40px auto;
}

.form-container iframe {
    width: 100%;
    min-height: 1200px;
    border: none;
}

/* ============================= */
/* Footer */
/* ============================= */

footer {
    margin-top: 60px;
    font-size: 14px;
    color: #7b8794;
}

/* ============================= */
/* Mobile */
/* ============================= */

@media (max-width: 600px) {
    .form-container iframe {
        min-height: 1600px;
    }
}
/* Next Steps Page */

.next-wrapper {
    max-width: 800px;
}

.next-wrapper p,
.next-wrapper ul {
    text-align: left;
}

.next-wrapper ul {
    margin-left: 20px;
}

.next-wrapper h1 {
    text-align: center;
}