body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('inline-font1_1.jpg') no-repeat center top fixed;
    background-size: cover;
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: rgba(0, 0, 0, 0.85);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo {
    height: 48px;
    margin-right: 16px;
}

nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffb300;
}

.search-box {
    display: flex;
    align-items: center;
    margin-left: 24px;
}

.search-box input[type="text"] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    width: 180px;
    outline: none;
}

.search-box button {
    padding: 8px 16px;
    border: none;
    background: #ffb300;
    color: #222;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.search-box button:hover {
    background: #ffa000;
}

main {
    background: rgba(255, 255, 255, 0.98);
    max-width: 1200px;
    margin: 32px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 32px 20px 20px 20px;
    flex: 1 0 auto;
}

h1,
h2,
h3 {
    color: #1a237e;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
}

h1 {
    margin-top: 0;
    font-size: 2.3rem;
    text-align: center;
}

.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    margin: 24px 0 16px 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.cta-btn {
    display: inline-block;
    margin: 24px auto 0 auto;
    background: #1a237e;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 14px 36px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    text-align: center;
}

.cta-btn:hover {
    background: #ffb300;
    color: #222;
}

footer {
    background: #1a237e;
    color: #fff;
    text-align: center;
    padding: 28px 10px 18px 10px;
    border-top: 4px solid #ffb300;
    margin-top: 40px;
    flex-shrink: 0;
}

.footer-links {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffb300;
    text-decoration: none;
    margin: 0 14px;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .nav-container,
    main {
        flex-direction: column;
        padding: 10px 4vw;
    }
    .banner-img {
        max-width: 98vw;
    }
    .logo {
        height: 36px;
    }
}