* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #121212;
    font-family: Arial, Helvetica, sans-serif;
    color: #f5f5f5;
}

body {
    display: flex;
    flex-direction: column;
}

/* Top red bar */
.header-bar {
    background: linear-gradient(90deg, #b31217, #e52d27);
    color: #ffffff;
    padding: 24px 80px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.4);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.header-bar .brand {
    font-size: 58px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.header-bar .subtitle {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    opacity: 0.9;
}

/* Main content wrapper */
.content {
    flex: 1;
    padding: 30px 60px 40px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* White board */
.main {
    display: flex;
    flex-direction: row;
    gap: 80px;
    max-width: 3600px;
    width: 100%;
    background: #ffffff;
    color: #222;
    border-radius: 12px;
    padding: 40px 70px 40px;
    box-shadow: 0 0 50px rgba(0,0,0,0.45);
}

.col {
    flex: 1;
    min-width: 0;
}

/* Headings inside board */
h1, h2, h3 {
    margin: 0 0 14px 0;
    font-weight: 800;
    color: #c32026;
    letter-spacing: 0.04em;
}

h1 {
    font-size: 82px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

h2 {
    font-size: 56px;
    margin-top: 26px;
}

h3 {
    font-size: 38px;
    margin-top: 16px;
}

/* Section containers */
.menu-block {
    margin-bottom: 52px;
}

/* Menu rows */
.menu-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 7px 0;
    font-size: 34px;
    border-bottom: 1px solid #eee;
}

.menu-line span:first-child {
    max-width: 72%;
}

/* Light zebra striping */
.menu-block .menu-line:nth-child(odd) {
    background: #fafafa;
}

/* Small text details */
.small-text {
    font-size: 28px;
    margin-top: 6px;
}

.section-note {
    font-size: 26px;
    color: #666;
    margin-top: 10px;
}

/* Subheadings & highlight bars */
.subheading {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 30px;
    color: #c32026;
    margin-top: 20px;
    margin-bottom: 6px;
    letter-spacing: 0.08em;
}

.highlight-bar {
    font-weight: 700;
    font-size: 32px;
    color: #c32026;
    border-top: 3px solid #c32026;
    padding-top: 10px;
    margin-top: 18px;
}

/* Multi-column lists */
.two-col-list,
.three-col-list {
    display: flex;
    gap: 40px;
}

.two-col-list {
    font-size: 30px;
}

.three-col-list {
    font-size: 30px; /* a bit bigger to fill menu2 */
}

.two-col-list ul,
.three-col-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.two-col-list li,
.three-col-list li {
    margin-bottom: 6px;
}

.centered {
    text-align: center;
}

/* Featured item card for Menu 2 */
.feature-card {
    margin-top: 40px;
    padding: 24px 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: #5a2a00;
    box-shadow: 0 0 30px rgba(0,0,0,0.18);
}

.feature-card-title {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.feature-card-subtitle {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-card-desc {
    font-size: 24px;
}
