/* ============================================================
   FDOS™ — Global Stylesheet
   Covers: all pages (index, system, 28-ips, books, certification,
           contact, origin, licensing, privacy, terms, 404)
   ============================================================ */

/* ── Reset ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Base ── */
body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.8;
    color: #2a2a2a;
    background: #f5f3ef;
}

/* 404 page needs full-height flex column */
body.page-404 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 
============================================================
NAVIGATION
============================================================ 
*/

.main_menu {
    background: #1a2332;
    padding: 25px 0;
    border-bottom: 1px solid #d4af37;
}

.main_menu .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main_menu .logo {
    display: block;
    height: 144px;
    width: max-content;
    position: relative;
}

.main_menu .logo img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

/* licensing.html has a stacked logo + copyright line */
.main_menu .logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main_menu .copyright-text {
    font-size: 0.65em;
    color: #e8e6e0;
    font-family: 'Arial', sans-serif;
    margin-top: 8px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.main_menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.main_menu a {
    color: #e8e6e0;
    text-decoration: none;
    font-size: 0.95em;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.main_menu a:hover {
    color: #d4af37;
}

/* Hamburger toggle — hidden on desktop, shown via responsive.css */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8e6e0;
    transition: all 0.3s;
}

/* ============================================================
   HERO (index.html)
   ============================================================ */
.hero {
    background: linear-gradient(to bottom, #1a2332, #2d3e50);
    color: #e8e6e0;
    padding: 120px 40px;
    text-align: center;
    border-bottom: 2px solid #d4af37;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
}

.hero .subtitle {
    font-size: 1.3em;
    margin-bottom: 50px;
    font-weight: 300;
    color: #d4af37;
    font-style: italic;
}

/* ============================================================
   PAGE HEADER (all inner pages)
   ============================================================ */
.page-header {
    background: linear-gradient(to bottom, #1a2332, #2d3e50);
    color: #e8e6e0;
    padding: 80px 40px;
    text-align: center;
    border-bottom: 2px solid #d4af37;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
}

.page-header .subtitle {
    font-size: 1.3em;
    color: #d4af37;
    font-style: italic;
    font-weight: 300;
}

/* ============================================================
   SECTIONS — base
   ============================================================ */
section {
    padding: 100px 40px;
}

section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #1a2332;
    font-weight: 400;
    letter-spacing: 0.5px;
}

section h3 {
    font-size: 1.6em;
    margin-bottom: 25px;
    color: #1a2332;
}

section p {
    font-size: 1.1em;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
}

section.certification {
    padding-top: 0px;
}

.vault.frameworks {
    padding-top: 0;
}

.vault.frameworks .vault-intro {
    text-align: start;
    max-width: 800px;
    margin: 0;
}

/* Legal pages (Privacy / Terms) — tighter section */
.legal-section {
    padding: 60px 40px;
    background: #ffffff;
}

.legal-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    margin-top: 50px;
    color: #1a2332;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.legal-section h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 35px;
    color: #1a2332;
    font-weight: 400;
}

.legal-section p {
    font-size: 1.05em;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.legal-section ul {
    margin-left: 40px;
    margin-bottom: 25px;
}

.legal-section li {
    font-size: 1.05em;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
    font-family: 'Arial', sans-serif;
}

.last-updated {
    background: #f5f3ef;
    padding: 20px 30px;
    margin-bottom: 40px;
    border-left: 3px solid #d4af37;
    font-size: 0.95em;
    color: #4a4a4a;
}

/* ============================================================
   BUTTON
   ============================================================ */
.btn {
    display: inline-block;
    padding: 20px 50px;
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1em;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 600;
}

.btn:hover {
    background: #d4af37;
    color: #1a2332;
}

/* 
============================================================
   FOOTER
============================================================ 
*/

.web_footer {
    background: #000000;
    color: #ffffff;
    padding: 40px;
    border-top: 2px solid #d4af37;
    text-align: center;
}

.web_footer .footer-logo {
    max-width: 160px;
    position: relative;
    height: max-content;
    display: block;
    margin: 0 auto 24px;
}

.web_footer .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.web_footer p {
    font-size: 0.9em;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

/* ============================================================
   INDEX — What Is FDOS
   ============================================================ */
.what-is-fdos {
    background: #ffffff;
}

.explanation-box {
    background: #f5f3ef;
    padding: 50px;
    border-left: 3px solid #d4af37;
    margin: 40px 0;
}

.explanation-box h3 {
    color: #1a2332;
    font-size: 1.6em;
    margin-bottom: 20px;
    font-weight: 400;
}

.not-box {
    background: #1a2332;
    color: #e8e6e0;
    padding: 40px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.not-box h3 {
    color: #d4af37;
    font-size: 1.4em;
    margin-bottom: 20px;
}

.not-box ul {
    list-style: none;
    padding-left: 0;
}

.not-box li {
    padding: 8px 0;
    font-size: 1em;
    line-height: 1.6;
}

.not-box li:before {
    content: "—";
    margin-right: 15px;
    color: #d4af37;
}

/* ── INDEX — System Visual ── */
.system-visual {
    background: #2d3e50;
    padding: 60px;
    margin: 50px 0;
    text-align: center;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
}

.system-layers {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px;
}

/* INDEX .layer — horizontal flow boxes */
.system-layers .layer {
    flex: 1;
    background: #1a2332;
    padding: 30px 20px;
    border: 1px solid #d4af37;
    position: relative;
}

.system-layers .layer h4 {
    color: #d4af37;
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.system-layers .layer p {
    color: #e8e6e0;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 0;
}

.system-layers .layer:not(:last-child):after {
    content: "→";
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 2em;
    z-index: 9;
}

/* ── INDEX — Vault ── */
.vault {
    background: #f5f3ef;
}

.vault-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.vault-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 2%;
    margin-top: 50px;
}

.vault-category {
    background: #ffffff;
    padding: 40px;
    border-left: 3px solid #d4af37;
}

.vault-category h3 {
    color: #1a2332;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 400;
}

.vault-category .count {
    color: #8a8a8a;
    font-size: 0.9em;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
}

.ip-list {
    list-style: none;
}

.ip-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e8e6e0;
    font-size: 0.95em;
    font-family: 'Arial', sans-serif;
    color: #4a4a4a;
}

.ip-list li:last-child {
    border-bottom: none;
}

.registered-badge h3 {
    background: #1a2332;
    color: #d4af37;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
    border: 2px solid #d4af37;
}

.registered-badge h3 {
    font-size: 1.3em;
    font-weight: 600;
    letter-spacing: 2px;
}

/* ── INDEX — Origin ── */
.origin {
    background: #ffffff;
}

.timeline {
    background: #f5f3ef;
    padding: 50px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.timeline h3 {
    color: #1a2332;
    font-size: 1.6em;
    margin-bottom: 20px;
    font-weight: 400;
}

.timeline-item {
    padding: 20px 0;
    border-bottom: 1px solid #d4af37;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item strong {
    color: #1a2332;
    font-size: 1.1em;
}

/* ── INDEX — Certification ── */
.certification {
    background: #f5f3ef;
}

.levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 2%;
    margin-top: 40px;
}

.level-card {
    background: #ffffff;
    padding: 40px;
    border-top: 3px solid #d4af37;
}

.level-card h3 {
    color: #1a2332;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 400;
}

.waitlist-box {
    background: #1a2332;
    color: #e8e6e0;
    padding: 50px 60px;
    margin: 50px 0;
    text-align: center;
    border: 3px solid #d4af37;
}

.waitlist-box h3 {
    color: #d4af37;
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 600;
}

.waitlist-box p {
    color: #e8e6e0;
    font-size: 1.1em;
    line-height: 1.9;
    max-width: 100%;
    margin: 0 auto 40px;
}

/* ── INDEX — Licensing ── */
.licensing {
    background: #ffffff;
}

.licensing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 2%;
    margin-top: 40px;
}

.licensing-item {
    background: #f5f3ef;
    padding: 40px;
    border-left: 3px solid #d4af37;
}

.licensing-item h3 {
    color: #1a2332;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 400;
}

/* ============================================================
   SYSTEM.HTML
   ============================================================ */
.architecture {
    background: #ffffff;
}

.layer-diagram {
    background: #2d3e50;
    padding: 60px;
    margin: 50px 0;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
}

/* system.html vertical layers */
.layers {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.layers .layer {
    background: #1a2332;
    padding: 40px;
    border-left: 3px solid #d4af37;
    position: relative;
}

.layers .layer h4 {
    color: #d4af37;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.layers .layer p {
    color: #e8e6e0;
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

.layers .layer ul {
    list-style: none;
    padding-left: 0;
    color: #b8b6b0;
}

.layers .layer li {
    padding: 8px 0;
    font-size: 0.95em;
}

.layers .layer li:before {
    content: "—";
    margin-right: 15px;
    color: #d4af37;
}

.layers .layer:not(:last-child):after {
    content: "↓";
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 2em;
}

.diagnostic {
    background: #f5f3ef;
}

.principle-box {
    background: #1a2332;
    color: #e8e6e0;
    padding: 50px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.principle-box h3 {
    color: #d4af37;
    font-size: 1.6em;
    margin-bottom: 25px;
    font-weight: 500;
}

.principle-box p {
    color: #e8e6e0;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

.principle-box ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.principle-box li {
    padding: 12px 0;
    border-bottom: 1px solid #2d3e50;
    font-family: 'Arial', sans-serif;
    color: #e8e6e0;
}

.principle-box li:last-child {
    border-bottom: none;
}

.sequences {
    background: #ffffff;
}

.sequence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(49%, 49%));
    gap: 2%;
    margin-top: 50px;
}

.sequence-card {
    background: #f5f3ef;
    padding: 40px;
    border-top: 3px solid #d4af37;
}

.sequence-card h3 {
    color: #1a2332;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 400;
}

.sequence-card .trigger {
    background: #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-left: 2px solid #d4af37;
}

.sequence-card .trigger strong {
    color: #1a2332;
    display: block;
    margin-bottom: 10px;
}

.sequence-card .trigger p {
    font-size: 0.95em;
    color: #4a4a4a;
    margin: 0;
}

.sequence-steps {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.sequence-steps li {
    padding: 12px 0 12px 40px;
    border-bottom: 1px solid #d4af37;
    font-size: 0.95em;
    color: #4a4a4a;
    position: relative;
    font-family: 'Arial', sans-serif;
}

.sequence-steps li:before {
    content: "→";
    position: absolute;
    left: 10px;
    color: #d4af37;
    font-weight: bold;
}

.sequence-steps li:last-child {
    border-bottom: none;
}

.integration {
    background: #f5f3ef;
}

.integration-box {
    background: #ffffff;
    padding: 50px;
    border-left: 3px solid #d4af37;
    margin: 40px 0;
}

.integration-box h3 {
    color: #1a2332;
    font-size: 1.6em;
    margin-bottom: 25px;
    font-weight: 300;
}

.dependency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.dependency-item {
    background: #f5f3ef;
    padding: 30px;
    border-left: 2px solid #d4af37;
}

.dependency-item h4 {
    color: #1a2332;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.dependency-item p {
    font-size: 0.95em;
    color: #4a4a4a;
    margin: 0;
}

.why-works {
    background: #ffffff;
}

.comparison-table {
    background: #f5f3ef;
    padding: 50px;
    margin: 40px 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #d4af37;
}

.comparison-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.comparison-col h4 {
    color: #1a2332;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.comparison-col p {
    font-size: 0.95em;
    color: #4a4a4a;
    margin: 0;
}

.comparison-col.traditional {
    opacity: 0.7;
}

.comparison-col.fdos {
    background: #ffffff;
    padding: 20px;
    border-left: 3px solid #d4af37;
}

/* ============================================================
   28-IPS.HTML
   ============================================================ */
.intro {
    background: #ffffff;
}

.warning-box {
    background: #1a2332;
    color: #e8e6e0;
    padding: 50px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
    text-align: center;
}

.warning-box h3 {
    color: #d4af37;
    font-size: 1.6em;
    margin-bottom: 20px;
    font-weight: 400;
}

.warning-box p {
    color: #e8e6e0;
    font-size: 1.1em;
    line-height: 1.8;
}

.category-section {
    padding: 80px 40px;
}

.category-section:nth-child(even) {
    background: #ffffff;
}

.category-section:nth-child(odd) {
    background: #f5f3ef;
}

.category-header {
    background: #1a2332;
    color: #e8e6e0;
    padding: 40px;
    margin-bottom: 50px;
    border-left: 5px solid #d4af37;
}

.category-header h2 {
    color: #d4af37;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.category-header .count {
    color: #b8b6b0;
    font-size: 1.1em;
    font-family: 'Arial', sans-serif;
}

.ip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.ip-card {
    background: #ffffff;
    padding: 20px;
    border-left: 3px solid #d4af37;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-section:nth-child(odd) .ip-card {
    background: #ffffff;
}

.category-section:nth-child(even) .ip-card {
    background: #f5f3ef;
}

.ip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ip-number {
    color: #d4af37;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.ip-card h3 {
    color: #1a2332;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.ip-card .tagline {
    color: #1a2332;
    font-size: 1em;
    font-style: italic;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d4af37;
}

.ip-card .solves {
    background: #f5f3ef;
    padding: 20px;
    border-left: 2px solid #d4af37;
}

.category-section:nth-child(odd) .ip-card .solves {
    background: #e8e6e0;
}

.ip-card .solves strong {
    color: #1a2332;
    display: block;
    margin-bottom: 10px;
    font-size: 0.95em;
    font-family: 'Arial', sans-serif;
}

.ip-card .solves p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

.view-details {
    display: inline-block;
    margin-top: 20px;
    color: #d4af37;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95em;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.view-details:hover {
    border-bottom-color: #d4af37;
    padding-left: 5px;
}

.technical-access {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 100px 40px;
}

.access-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 60px;
}

.access-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.access-container h2 {
    color: #d4af37;
    font-size: 2.2em;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.access-description {
    color: #e8e6e0;
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Arial', sans-serif;
}

.qualified-parties {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.qualified-parties h3 {
    color: #d4af37;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

.qualified-parties ul {
    list-style: none;
    padding: 0;
}

.qualified-parties li {
    color: #e8e6e0;
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-family: 'Arial', sans-serif;
}

.qualified-parties li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.2em;
}

.qualified-parties li strong {
    color: #ffffff;
}

.request-access-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #d4af37;
    color: #1a2332;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
    margin: 30px 0;
}

.request-access-btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.access-note {
    color: #b0b0b0;
    font-size: 0.95em;
    font-style: italic;
    margin-top: 25px;
    font-family: 'Arial', sans-serif;
}

.trademark-notice {
    background: #1a2332;
    color: #e8e6e0;
    padding: 80px 40px;
    text-align: center;
}

.trademark-badge {
    background: transparent;
    border: 3px solid #d4af37;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.trademark-badge h2 {
    color: #d4af37;
    font-size: 2.5em;
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-weight: 600;
}

.trademark-badge p {
    color: #e8e6e0;
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trademark-badge .legal {
    color: #b8b6b0;
    font-size: 0.95em;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #d4af37;
}

/* ============================================================
   BOOKS.HTML
   ============================================================ */
.foundation-box {
    background: #1a2332;
    color: #e8e6e0;
    padding: 60px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.foundation-box h3 {
    color: #d4af37;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.foundation-box p {
    color: #e8e6e0;
    font-size: 1.1em;
    line-height: 1.9;
}

.published-works {
    background: #f5f3ef;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.book-card {
    background: #ffffff;
    padding: 50px 40px;
    border-left: 3px solid #d4af37;
    transition: transform 0.3s, box-shadow 0.3s;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.book-year {
    color: #d4af37;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.book-card h3 {
    color: #1a2332;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.book-card .description {
    color: #4a4a4a;
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 25px;
}

.book-card .fdos-connection {
    background: #f5f3ef;
    padding: 20px;
    border-left: 2px solid #d4af37;
    margin-top: 25px;
}

.book-card .fdos-connection strong {
    color: #1a2332;
    display: block;
    margin-bottom: 10px;
    font-size: 0.95em;
}

.book-card .fdos-connection p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

.manuscripts {
    background: #ffffff;
}

.manuscript-intro {
    background: #f5f3ef;
    padding: 50px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.manuscript-intro h3 {
    color: #1a2332;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.manuscript-intro p {
    color: #4a4a4a;
    font-size: 1.1em;
    line-height: 1.9;
}

.relationship {
    background: #f5f3ef;
}

.distinction-box {
    background: #ffffff;
    padding: 50px;
    margin: 40px 0;
}

.distinction-box h3 {
    color: #1a2332;
    font-size: 1.8em;
    margin-bottom: 40px;
}

.distinction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.distinction-col h4 {
    color: #d4af37;
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: 400;
}

.distinction-col ul {
    list-style: none;
    padding: 0;
}

.distinction-col li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #4a4a4a;
    font-size: 1em;
    font-family: 'Arial', sans-serif;
}

.distinction-col li:last-child {
    border-bottom: none;
}

.access {
    background: #ffffff;
}

.access-statement {
    background: #1a2332;
    color: #e8e6e0;
    padding: 50px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.access-statement h3 {
    color: #d4af37;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.access-statement p {
    color: #e8e6e0;
    font-size: 1.1em;
    line-height: 1.9;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.access-item {
    background: #f5f3ef;
    padding: 40px;
    border-left: 3px solid #d4af37;
}

.access-item h4 {
    color: #1a2332;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 400;
}

.access-item p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.7;
}

/* ============================================================
   CERTIFICATION.HTML
   ============================================================ */
.standards-box {
    background: #1a2332;
    color: #e8e6e0;
    padding: 60px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.standards-box h3 {
    color: #d4af37;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.standards-box p {
    color: #e8e6e0;
    font-size: 1.1em;
    line-height: 1.9;
}

.level-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    gap: 2%;
    margin-top: 50px;
}

/* Override index .level-card for certification page */
.level-grid .level-card {
    padding: 30px;
    border-top: 5px solid #d4af37;
    transition: transform 0.3s, box-shadow 0.3s;
}

.level-grid .level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.level-number {
    color: #d4af37;
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.level-grid .level-card h3 {
    color: #1a2332;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 400;
}

.level-card .tagline {
    color: #4a4a4a;
    font-size: 1.05em;
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #d4af37;
}

.level-card .description {
    color: #4a4a4a;
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.competencies {
    background: #f5f3ef;
    padding: 25px;
    margin-top: 25px;
}

.competencies strong {
    color: #1a2332;
    display: block;
    margin-bottom: 15px;
    font-size: 1em;
}

.competencies ul {
    list-style: none;
    padding: 0;
}

.competencies li {
    padding: 10px 0;
    border-bottom: 1px solid #d4af37;
    font-size: 0.95em;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
}

.competencies li:last-child {
    border-bottom: none;
}

.competencies li:before {
    content: "—";
    margin-right: 15px;
    color: #d4af37;
}

.requirements {
    background: #ffffff;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.requirement-card {
    background: #f5f3ef;
    padding: 40px;
    border-left: 3px solid #d4af37;
}

.requirement-card h4 {
    color: #1a2332;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.requirement-card p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.7;
    margin: 0;
}

.value {
    background: #f5f3ef;
}

.value-statement {
    background: #1a2332;
    color: #e8e6e0;
    padding: 60px;
    margin: 40px 0;
    text-align: center;
}

.value-statement h3 {
    color: #d4af37;
    font-size: 2em;
    margin-bottom: 25px;
}

.value-statement p {
    color: #e8e6e0;
    font-size: 1.15em;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
}

.differentiation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.differentiation-item {
    background: #ffffff;
    padding: 40px;
    border-top: 3px solid #d4af37;
}

.differentiation-item h4 {
    color: #1a2332;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.differentiation-item p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.7;
    margin: 0;
}

.training {
    background: #ffffff;
}

.training-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.phase-card {
    background: #f5f3ef;
    padding: 40px;
    border-left: 3px solid #d4af37;
}

.phase-number {
    color: #d4af37;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.phase-card h4 {
    color: #1a2332;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.phase-card p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.7;
    margin: 0;
}

.standards {
    background: #f5f3ef;
}

.standards-statement {
    background: #ffffff;
    padding: 50px;
    margin: 40px 0;
    border-left: 5px solid #d4af37;
}

.standards-statement h3 {
    color: #1a2332;
    font-size: 1.6em;
    margin-bottom: 25px;
}

.standards-list {
    list-style: none;
    padding: 0;
}

.standards-list li {
    padding: 20px 0;
    border-bottom: 1px solid #d4af37;
    font-size: 1.05em;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
}

.standards-list li:last-child {
    border-bottom: none;
}

.standards-list strong {
    color: #1a2332;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.application {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: #f5f3ef;
    padding: 35px;
    border-top: 3px solid #d4af37;
    text-align: center;
}

.step-number {
    color: #d4af37;
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step h4 {
    color: #1a2332;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: #4a4a4a;
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   CONTACT.HTML
   ============================================================ */
.controlled-access {
    background: #1a2332;
    color: #e8e6e0;
    padding: 60px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.controlled-access h3 {
    color: #d4af37;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.controlled-access p {
    color: #e8e6e0;
    font-size: 1.1em;
    line-height: 1.9;
}

.categories {
    background: #f5f3ef;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    gap: 2%;
    margin-top: 50px;
}

.category-card {
    background: #ffffff;
    padding: 50px;
    border-left: 5px solid #d4af37;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-card h3 {
    color: #1a2332;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 400;
}

.category-card .description {
    color: #4a4a4a;
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.contact-info {
    background: #f5f3ef;
    padding: 25px;
    margin-top: 25px;
}

.contact-info strong {
    color: #1a2332;
    display: block;
    margin-bottom: 15px;
    font-size: 1em;
}

.contact-info p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 10px 0;
}

.contact-info a {
    color: #1a2332;
    text-decoration: none;
    border-bottom: 1px solid #d4af37;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #d4af37;
}

.entity {
    background: #ffffff;
}

.entity-box {
    background: #f5f3ef;
    padding: 50px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.entity-box h3 {
    color: #1a2332;
    font-size: 1.6em;
    margin-bottom: 30px;
}

.entity-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 2%;
    margin-top: 30px;
}

.detail-item {
    background: #ffffff;
    padding: 30px;
    border-top: 3px solid #d4af37;
}

.detail-item h4 {
    color: #1a2332;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.detail-item p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 5px 0;
}

.detail-item strong {
    color: #1a2332;
}

.response {
    background: #f5f3ef;
}

.response-statement {
    background: #1a2332;
    color: #e8e6e0;
    padding: 60px;
    margin: 40px 0;
    text-align: center;
}

.response-statement h3 {
    color: #d4af37;
    font-size: 2em;
    margin-bottom: 25px;
}

.response-statement p {
    color: #e8e6e0;
    font-size: 1.15em;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 2%;
    margin-top: 50px;
}

.expectation-item {
    background: #ffffff;
    padding: 40px;
    border-left: 3px solid #d4af37;
}

.expectation-item h4 {
    color: #1a2332;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.expectation-item p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.7;
    margin: 0;
}

.not-accepted {
    background: #ffffff;
}

.not-accepted-box {
    background: #f5f3ef;
    padding: 50px;
    margin: 40px 0;
    border-left: 5px solid #d4af37;
}

.not-accepted-box h3 {
    color: #1a2332;
    font-size: 1.6em;
    margin-bottom: 30px;
}

.not-accepted-list {
    list-style: none;
    padding: 0;
}

.not-accepted-list li {
    padding: 20px 0;
    border-bottom: 1px solid #d4af37;
    font-size: 1.05em;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
}

.not-accepted-list li:last-child {
    border-bottom: none;
}

.not-accepted-list strong {
    color: #1a2332;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.privacy {
    background: #f5f3ef;
}

.privacy-statement {
    background: #ffffff;
    padding: 50px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.privacy-statement h3 {
    color: #1a2332;
    font-size: 1.6em;
    margin-bottom: 25px;
}

.privacy-statement p {
    color: #4a4a4a;
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

/* ============================================================
   ORIGIN.HTML
   ============================================================ */
.origin-story {
    background: #ffffff;
}

.timeline-box {
    background: #1a2332;
    color: #e8e6e0;
    padding: 60px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.timeline-box h3 {
    color: #d4af37;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.timeline-box p {
    color: #e8e6e0;
    font-size: 1.1em;
    line-height: 1.9;
    margin-bottom: 20px;
}

.writing-journey {
    background: #f5f3ef;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.journey-card {
    background: #ffffff;
    padding: 40px;
    border-left: 3px solid #d4af37;
}

.journey-year {
    color: #d4af37;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.journey-card h3 {
    color: #1a2332;
    font-size: 1.6em;
    margin-bottom: 20px;
    font-weight: 400;
}

.journey-card p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.realization {
    background: #ffffff;
}

.realization-box {
    background: #1a2332;
    color: #e8e6e0;
    padding: 60px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.realization-box h3 {
    color: #d4af37;
    font-size: 2em;
    margin-bottom: 30px;
}

.realization-box p {
    color: #e8e6e0;
    font-size: 1.15em;
    line-height: 2;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
}

.single-creator {
    background: #f5f3ef;
}

.creator-statement {
    background: #ffffff;
    padding: 50px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.creator-statement h3 {
    color: #1a2332;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.creator-statement p {
    color: #4a4a4a;
    font-size: 1.1em;
    line-height: 1.9;
    font-family: 'Arial', sans-serif;
}

.independence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.independence-item {
    background: #ffffff;
    padding: 40px;
    border-left: 3px solid #d4af37;
}

.independence-item h4 {
    color: #1a2332;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 400;
}

.independence-item p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.provenance {
    background: #ffffff;
}

.provenance-box {
    background: #f5f3ef;
    padding: 50px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.provenance-box h3 {
    color: #1a2332;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.provenance-box ul {
    list-style: none;
    padding: 0;
}

.provenance-box li {
    padding: 15px 0;
    border-bottom: 1px solid #d0d0d0;
    color: #4a4a4a;
    font-size: 1em;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.provenance-box li:last-child {
    border-bottom: none;
}

/* ============================================================
   LICENSING.HTML
   ============================================================ */
.enterprise-statement {
    background: #1a2332;
    color: #e8e6e0;
    padding: 45px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.enterprise-statement h3 {
    color: #d4af37;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.enterprise-statement p {
    color: #e8e6e0;
    font-size: 1.1em;
    line-height: 1.9;
}

.models {
    background: #f5f3ef;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    gap: 2%;
    margin-top: 50px;
}

.model-card {
    background: #ffffff;
    padding: 30px;
    border-left: 5px solid #d4af37;
    transition: transform 0.3s, box-shadow 0.3s;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.model-card h3 {
    color: #1a2332;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 400;
}

.model-card .tagline {
    color: #4a4a4a;
    font-size: 1.05em;
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #d4af37;
    font-family: 'Arial', sans-serif;
}

.model-card .description {
    color: #4a4a4a;
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.applications {
    background: #f5f3ef;
    padding: 25px;
    margin-top: 25px;
}

.applications strong {
    color: #1a2332;
    display: block;
    margin-bottom: 15px;
    font-size: 1em;
}

.applications ul {
    list-style: none;
    padding: 0;
}

.applications li {
    padding: 10px 0;
    border-bottom: 1px solid #d4af37;
    font-size: 0.95em;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
}

.applications li:last-child {
    border-bottom: none;
}

.applications li:before {
    content: "—";
    margin-right: 15px;
    color: #d4af37;
}

.use-cases {
    background: #ffffff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    gap: 2%;
    margin-top: 50px;
}

.case-card {
    background: #f5f3ef;
    padding: 25px;
    border-top: 3px solid #d4af37;
}

.case-icon {
    color: #d4af37;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.case-card h4 {
    color: #1a2332;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 600;
}

.case-card p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.case-benefit {
    background: #ffffff;
    padding: 20px;
    margin-top: 20px;
    border-left: 2px solid #d4af37;
}

.case-benefit strong {
    color: #1a2332;
    display: block;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.case-benefit p {
    color: #4a4a4a;
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
}

.scalability {
    background: #f5f3ef;
}

.scalability-statement {
    background: #1a2332;
    color: #e8e6e0;
    padding: 60px;
    margin: 40px 0;
    text-align: center;
}

.scalability-statement h3 {
    color: #d4af37;
    font-size: 2em;
    margin-bottom: 25px;
}

.scalability-statement p {
    color: #e8e6e0;
    font-size: 1.15em;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.advantage-item {
    background: #ffffff;
    padding: 40px;
    border-left: 3px solid #d4af37;
}

.advantage-item h4 {
    color: #1a2332;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.advantage-item p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.7;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.white-label {
    background: #ffffff;
}

.white-label-intro {
    background: #f5f3ef;
    padding: 50px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.white-label-intro h3 {
    color: #1a2332;
    font-size: 1.6em;
    margin-bottom: 25px;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.customization-card {
    background: #f5f3ef;
    padding: 40px;
    border-top: 3px solid #d4af37;
}

.customization-card h4 {
    color: #1a2332;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.customization-card p {
    color: #4a4a4a;
    font-size: 0.95em;
    line-height: 1.7;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.integrity-box {
    background: #1a2332;
    color: #e8e6e0;
    padding: 50px;
    margin: 50px 0;
    border: 3px solid #d4af37;
}

.integrity-box h3 {
    color: #d4af37;
    font-size: 1.6em;
    margin-bottom: 25px;
}

.integrity-box p {
    color: #e8e6e0;
    font-size: 1.05em;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

.partnership {
    background: #f5f3ef;
}

.partnership-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 2%;
    margin-top: 50px;
}

/* licensing .process-step differs from certification .process-step */
.partnership-process .process-step {
    background: #ffffff;
    padding: 25px;
    border-left: 3px solid #d4af37;
    text-align: center;
}

.inquiry {
    background: #ffffff;
}

.inquiry-box {
    background: #1a2332;
    color: #e8e6e0;
    padding: 80px 60px;
    margin: 50px 0;
    text-align: center;
    border: 3px solid #d4af37;
}

.inquiry-box h3 {
    color: #d4af37;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 400;
}

.inquiry-box p {
    color: #e8e6e0;
    font-size: 1.2em;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: 'Arial', sans-serif;
}

.contact-details {
    background: #f5f3ef;
    padding: 50px;
    margin: 40px 0;
    text-align: center;
}

.contact-details h4 {
    color: #1a2332;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-details p {
    color: #4a4a4a;
    font-size: 1.05em;
    margin: 10px 0;
    font-family: 'Arial', sans-serif;
}

.contact-details strong {
    color: #1a2332;
}

/* ============================================================
   404.HTML
   ============================================================ */
.error-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.error-content {
    max-width: 700px;
    text-align: center;
}

.error-code {
    font-size: 8em;
    font-weight: 400;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.error-title {
    font-size: 2.5em;
    color: #1a2332;
    margin-bottom: 30px;
    font-weight: 400;
}

.error-message {
    font-size: 1.2em;
    color: #4a4a4a;
    margin-bottom: 50px;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.nav-links a {
    color: #1a2332;
    text-decoration: none;
    font-size: 1.1em;
    padding: 15px 30px;
    border: 2px solid #d4af37;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

.nav-links a:hover {
    background: #1a2332;
    color: #d4af37;
    border-color: #1a2332;
}

.privacy_cta {
    margin-left: 0;
    margin-top: 60px;
}

.pirmaru_button {
    display: inline-block; 
    margin-top: 15px; 
    padding: 12px 30px; 
    background: #d4af37; 
    color: #1a2332; 
    text-decoration: none; 
    border-radius: 4px; 
    font-weight: 600; 
    transition: background 0.3s;
}
