:root {
    --text: #333;
    --light: #f4f4f4;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: var(--text);
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.top-nav{display:flex;gap:1rem;justify-content:center;margin-top:1rem;font-weight:600;align-items:center;}
.top-nav a{color:var(--text);text-decoration:none;font-size:1.5em}
.top-nav a:hover{text-decoration:underline}

.logo {
    height: 40px;
    vertical-align: middle;
}

.logo-home {
    height: 56px; /* 40% larger than 40px */
}

.logo-flipped {
    height: 384px;
    width: 384px;
    position: absolute;
    top: 0;
    right: 0;
}

table{width:100%;border-collapse:collapse;margin-top:1rem}
th,td{border-bottom:1px solid #e0e0e0;padding:.75rem .5rem;text-align:left}
thead{background:var(--light)}
.fine-print{font-size:.85rem;color:#555;margin-top:.5rem}

.hero {
    text-align: center;
}

.hero img {
    max-width: 100%;
    height: auto;
}

#page-home .hero h1 {
    font-size: 3em;
}

#page-home .hero p {
    font-size: 1.5em;
}

#page-services,
#page-tools {
    font-size: 1.1em;
}

.cta {
    text-align: center;
}

.btn {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

h2.heading-with-logo {
    position: relative;
    padding-right: 400px;
} 