/* Layout - Windows 98 Style */

body {
    font-family: "MS Sans Serif", Arial, sans-serif;
    color: #000;
    background-color: #c0c0c0;
    font-size: 11px;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* Grid System */
.grid {
    display: grid;
    gap: 16px;
}

.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex--center {
    justify-content: center;
    align-items: center;
}

.flex--between {
    justify-content: space-between;
    align-items: center;
}

/* Sections */
.section {
    padding: 32px 0;
    background: #c0c0c0;
}

.section--alt {
    background-color: #dfdfdf;
    border-top: 2px solid #808080;
    border-bottom: 2px solid #ffffff;
}

.section__title {
    font-family: "MS Sans Serif", Arial, sans-serif;
    font-size: 18px;
    margin-bottom: 24px;
    text-align: center;
    color: #000080;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section__text {
    font-size: 12px;
    color: #000;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    font-family: "MS Sans Serif", Arial, sans-serif;
}