:root {
    --tos-bg: #f9f9f9;
    --tos-text: #222222;
    --tos-primary: #1a237e; /* Deep Indigo */
    --tos-secondary: #ffffff;
    --tos-accent: #ff5252; /* Red Accent */
    --tos-border: #cccccc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--tos-bg); color: var(--tos-text);
    font-family: 'Times New Roman', Times, serif; /* Formal serif font */
    line-height: 1.8; overflow-x: hidden;
}

.tos-container { max-width: 850px; margin: 0 auto; padding: 0 40px;}

/* Header */
.tos-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 40px 0; margin-bottom: 40px; border-bottom: 3px double var(--tos-border);
}
.tos-brand {
    font-size: 28px; font-weight: bold; color: var(--tos-primary);
    font-family: 'Arial', sans-serif; text-transform: uppercase; letter-spacing: 2px;
}
.tos-nav { display: flex; gap: 25px; font-family: 'Arial', sans-serif;}
.tos-nav a {
    font-size: 13px; font-weight: bold; color: #555; text-decoration: none;
    text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s;
}
.tos-nav a:hover, .tos-nav a.active { color: var(--tos-primary); }

/* Hero / Title */
.tos-hero {
    text-align: center; margin-bottom: 50px; padding: 30px 0;
}
.tos-hero h1 {
    font-size: 38px; color: var(--tos-primary); margin-bottom: 10px; font-weight: bold;
    text-transform: uppercase; letter-spacing: 1px;
}
.tos-hero p { font-size: 14px; color: #666; text-transform: uppercase; letter-spacing: 2px;}

/* Content Sections */
.tos-section { margin-bottom: 40px; background: var(--tos-secondary); padding: 40px; border: 1px solid var(--tos-border); box-shadow: 0 2px 10px rgba(0,0,0,0.02);}
.tos-section h2 {
    font-size: 22px; color: var(--tos-primary); margin-bottom: 20px;
    font-family: 'Arial', sans-serif; text-transform: uppercase;
}
.tos-section p { margin-bottom: 15px; font-size: 16px; color: #333; text-align: justify;}
.tos-section ul { margin-left: 30px; margin-bottom: 20px;}
.tos-section li { margin-bottom: 10px; font-size: 16px; color: #333;}

.warning-box {
    background: #fff0f0; padding: 20px; border-left: 5px solid var(--tos-accent);
    margin-bottom: 20px; font-weight: bold; color: #d32f2f; font-family: 'Arial', sans-serif;
}

.btn-tos {
    display: inline-block; padding: 15px 40px; font-size: 14px; font-weight: bold;
    color: #fff; background: var(--tos-primary); border: none; font-family: 'Arial', sans-serif;
    text-decoration: none; transition: background 0.2s; text-transform: uppercase; letter-spacing: 1px;
}
.btn-tos:hover { background: #000051; }

/* FAQ */
.tos-faq { margin-bottom: 80px; }
.tos-faq h2 { font-size: 24px; color: var(--tos-primary); margin-bottom: 30px; font-family: 'Arial', sans-serif; text-transform: uppercase; border-bottom: 1px solid var(--tos-border); padding-bottom: 10px;}
.t-faq-item { margin-bottom: 25px; }
.t-fq { font-size: 18px; font-weight: bold; color: var(--tos-primary); margin-bottom: 10px; font-family: 'Arial', sans-serif;}
.t-fa { font-size: 16px; color: #444; text-align: justify;}

footer {
    text-align: center; padding: 30px 0; color: #888; font-size: 12px;
    border-top: 1px solid var(--tos-border); font-family: 'Arial', sans-serif;
    text-transform: uppercase; letter-spacing: 1px;
}

@media (max-width: 768px) {
    .tos-header { flex-direction: column; gap: 20px; }
    .tos-container { padding: 0 20px; }
    .tos-section { padding: 20px; }
    .tos-hero h1 { font-size: 28px; }
}