* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f8fb;
    color: #111;
}

/* Top navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    gap: 28px;

    padding: 18px 48px;

    background: #ffffff;
    border-bottom: 1px solid #e3e7eb;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

nav a:hover {
    color: #0068b5;
}

h1 {
    margin: 0;
    padding: 48px 48px 0 48px;

    font-size: 32px;
    font-weight: 600;
}
/* Main content spacing */
body > .textbox {
    margin: 64px 48px;
}

/* Spec card */
.textbox {
    width: 560px;

    background: #ffffff;

    padding: 28px 32px;

    border: 1px solid #e4e7eb;
    border-radius: 8px;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

/* Spec rows */
.textbox p {
    margin: 0;
    padding: 18px 0;

    font-size: 16px;

    border-bottom: 1px solid #eeeeee;
}

.textbox p:last-child {
    border-bottom: none;
}

/* Links */
a {
    color: #0068b5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Intel badge */
.textbox img {
    width: 48px;
    height: auto;

    margin-left: 8px;

    vertical-align: middle;
}