/* ===== Reset & Base ===== */
body {
    background-color: #2F2F2F;
    color: #FFFFFF;
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 0;
}

/* ===== Header ===== */
header {
    text-align: center;
    border-top: 6px solid #8B0000;
    border-bottom: 2px solid #8B0000;
    padding: 20px 20px 15px;
    background-color: #1a1a1a;
}

.logo {
    max-width: 300px;
    margin: 0 auto;
}

/* ===== Navigation ===== */
nav {
    margin-top: 20px;
    padding-bottom: 5px;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 5px 8px;
    transition: color 0.3s, background-color 0.3s;
    display: inline-block;
}

nav a:hover {
    color: #FFFFFF;
    background-color: #8B0000;
    border-radius: 3px;
}

/* ===== Content Boxes ===== */
.content-box {
    background-color: #000000;
    border: 1px solid #8B0000;
    padding: 30px 40px;
    margin: 30px auto;
    border-radius: 5px;
    max-width: 900px;
}

.content-box h1 {
    color: #8B0000;
    font-size: 32px;
    text-align: center;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.content-box h2 {
    color: #8B0000;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.content-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #dddddd;
}

/* ===== Red Dividers ===== */
.red-divider {
    border: none;
    height: 2px;
    background-color: #8B0000;
    margin: 30px 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    background-color: #8B0000;
    color: #FFFFFF;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Times New Roman', serif;
}

.btn:hover {
    background-color: #a00000;
}

/* ===== Footer ===== */
footer {
    text-align: center;
    border-top: 2px solid #8B0000;
    padding: 20px;
    margin-top: 40px;
    color: #888888;
    font-size: 14px;
}

footer a {
    color: #8B0000;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ===== Red Accent Lists ===== */
ul.red-bullets {
    list-style: none;
    padding-left: 0;
}

ul.red-bullets li {
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
}

ul.red-bullets li::before {
    content: "►";
    color: #8B0000;
    position: absolute;
    left: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .content-box {
        padding: 20px;
        margin: 15px;
    }

    nav a {
        display: block;
        margin: 5px 0;
    }
}

