
    /* --- Basic Styles --- */
    :root {
        /* Transport Gold Theme */
        --primary-color: #333333; /* Dark Grey */
        --accent-color: #d4ac0d; /* Gold Chromate Color */
        --bg-light: #f9f9f9;
        --border-color: #e0e0e0;
        --text-dark: #333;
        --text-light: #555;
    }

    body {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        margin: 0;
        padding: 20px;
        background-color: #fff;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- Header Section --- */
    .page-header {
        border-bottom: 4px solid var(--accent-color);
        padding-bottom: 20px;
        margin-bottom: 40px;
        text-align: center;
    }

    .page-header h1 {
        color: var(--primary-color);
        font-size: 32px;
        margin: 0 0 10px 0;
    }

    /* --- Content Grid --- */
    .content-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }

    @media (min-width: 992px) {
        .content-grid {
            grid-template-columns: 1.5fr 1fr;
        }
    }

    /* --- Features & Description --- */
    .intro-text {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: justify;
    }

    .info-card {
        background: var(--bg-light);
        padding: 25px;
        border-radius: 8px;
        border-left: 5px solid var(--accent-color);
        margin-bottom: 20px;
    }

    .info-card h3 {
        color: var(--primary-color);
        margin-top: 0;
        font-size: 20px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .feature-list li {
        margin-bottom: 12px;
        padding-left: 25px;
        position: relative;
    }

    .feature-list li::before {
        content: "★";
        color: var(--accent-color);
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    /* --- Image Section --- */
    .image-wrapper {
        text-align: center;
        border: 1px solid var(--border-color);
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        background: #fff;
    }

    .image-wrapper img {
        width: 100%;
        height: auto;
        max-width: 450px;
    }

    .image-caption {
        font-size: 14px;
        color: #777;
        margin-top: 10px;
    }

    /* --- Standard Note --- */
    .standard-note {
        font-size: 14px;
        color: #666;
        font-style: italic;
        background: #fff;
        border: 1px dashed #ccc;
        padding: 15px;
        margin-top: 20px;
    }

