body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #f9fafb;
    color: #111;
}

header {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

blockquote {
    position: relative;
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: #f5f5f5;
    border-left: 6px solid #bbb;
    font-style: italic;
    font-size: 1.25rem;
    color: #444;
}

blockquote:before {
    content: '“';
    font-size: 4rem;
    color: #bbb;
    position: absolute;
    left: 10px;
    top: 0;
    line-height: 1;
    font-family: serif;
}

blockquote:after {
    content: '”';
    font-size: 4rem;
    color: #bbb;
    position: absolute;
    right: 10px;
    bottom: -20px;
    line-height: 1;
    font-family: serif;
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    margin-left: 1rem;
    text-decoration: none;
    color: #333;
}

.nav-links a:hover {
    color: #0056b3;
}

.button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background: #0056b3;
    color: white;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.button:hover {
    background: #004095;
}

.hero {
    background: #e0f0ff;
    padding: 4rem 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.section {
    padding: 3rem 1rem;
    background: white;
}

.section.gray {
    background: #f0f0f0;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section p,
.section li {
    font-size: 1.1rem;
    line-height: 1.6;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 700px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table th {
    background-color: #203864;
    color: white;
    padding: 8px;
    text-align: left;
}

table td {
    padding: 8px;
    border: 1px solid #ddd;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0056b3;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 1rem;
    text-decoration: none;
    color: #333;
}

.nav-links a:hover {
    color: #0056b3;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    height: 4px;
    width: 24px;
    background: #333;
    margin: 3px 0;
    border-radius: 2px;
    display: block;
    transition: 0.3s;
}

@media (max-width: 700px) {
    .nav-links {
        position: absolute;
        top: 64px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 200px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        display: none;
        z-index: 1001;
    }

    .nav-links.open {
        display: flex;
        width: 100%;
    }

    .nav-links a {
        text-indent: 1rem;
        ;
        padding: 0.5rem 1rem;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .hamburger {
        display: flex;
    }
}