
    :root {
        --fuji-red: #b22222;
        --text-color: #333;
        --bg-light: #f9f9f9;
        --border-color: #eee;
    }
    body {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        margin: 0;
        padding: 0;
        font-size: 16px;
    }
    .fuji-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
        background: #fff;
    }
    h2 {
        font-size: 20px;
        color: var(--fuji-red);
        border-left: 4px solid var(--fuji-red);
        padding-left: 12px;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
    }
    h3 {
        font-size: 18px;
        color: #444;
        margin-top: 20px;
        margin-bottom: 10px;
        font-weight: 600;
    }
    p {
        margin-bottom: 12px;
        text-align: justify;
    }
    ul, ol {
        margin-bottom: 20px;
        padding-left: 25px;
    }
    li {
        margin-bottom: 8px;
    }
    a {
        color: var(--fuji-red);
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted var(--fuji-red);
    }
    a:hover {
        text-decoration: underline;
    }
    .media-wrapper {
        text-align: center;
        margin: 25px 0;
    }
    .media-wrapper img {
        max-width: 70%;
        width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        border: 1px solid var(--border-color);
    }
    .spec-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 15px;
    }
    .spec-table th, .spec-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    .spec-table th {
        background-color: var(--bg-light);
        color: var(--fuji-red);
        width: 40%;
    }
    .highlight-box {
        background-color: #fff8f8;
        border-left: 4px solid var(--fuji-red);
        padding: 15px;
        margin: 20px 0;
        font-size: 15px;
    }
    .faq-item {
        background: var(--bg-light);
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 4px;
    }
    .faq-question {
        font-weight: 700;
        color: var(--fuji-red);
        display: block;
        margin-bottom: 5px;
    }
    @media (max-width: 600px) {
        .fuji-container { padding: 15px; }
        .media-wrapper img { max-width: 100%; }
        h2 { font-size: 18px; margin-top: 25px; }
        p { margin-bottom: 10px; }
        .spec-table { font-size: 14px; }
        .spec-table th, .spec-table td { padding: 8px; }
    }
