
    /* Reset & Base Styles */
    .fuji-page-wrapper {
        font-family: Verdana, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px 20px 15px; /* Removed top padding */
        box-sizing: border-box;
    }

    /* Headings (Capped at 20px, No H1) */
    .fuji-page-wrapper h2 {
        font-size: 20px;
        font-weight: bold;
        color: #1a1a1a;
        margin-top: 2em;
        margin-bottom: 0.8em;
        padding-bottom: 8px;
        border-bottom: 2px solid #e0e0e0;
    }

    /* Remove top margin for the very first element to eliminate top white space */
    .fuji-page-wrapper > h2:first-child {
        margin-top: 0;
    }

    .fuji-page-wrapper h3 {
        font-size: 18px;
        font-weight: bold;
        color: #333333;
        margin-top: 1.5em;
        margin-bottom: 0.5em;
    }

    .fuji-page-wrapper p {
        margin-bottom: 1.2em;
    }

    .fuji-page-wrapper strong, 
    .fuji-page-wrapper b {
        color: #000000;
        font-weight: bold;
    }

    /* Links */
    .fuji-page-wrapper a {
        color: #cc0000;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .fuji-page-wrapper a:hover {
        color: #990000;
        text-decoration: underline;
    }

    /* Lists */
    .fuji-page-wrapper ul {
        list-style-type: square;
        padding-left: 20px;
        margin-bottom: 1.5em;
    }

    .fuji-page-wrapper li {
        margin-bottom: 10px;
    }

    /* Media Containers (Images & Video matched sizing) */
    .media-container {
        max-width: 800px; /* Constrains both images and video to a sensible width */
        margin: 30px auto;
        text-align: center;
    }

    .media-container img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: block;
        margin: 0 auto;
    }

    .media-caption {
        font-size: 14px;
        color: #666666;
        font-style: italic;
        margin-top: 10px;
        display: block;
    }

    /* Responsive Video Wrapper Fix */
    .video-responsive {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        background-color: #000; /* Prevents white dot issue while loading */
    }

    .video-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* FAQ Section */
    .faq-container {
        background-color: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        border: 1px solid #eeeeee;
        margin-bottom: 30px;
    }

    .faq-item {
        margin-bottom: 20px;
    }

    .faq-item:last-child {
        margin-bottom: 0;
    }

    .faq-q {
        display: block;
        font-weight: bold;
        color: #1a1a1a;
        margin-bottom: 5px;
    }

    .faq-a {
        margin: 0;
        padding-left: 15px;
        border-left: 3px solid #cc0000;
    }

    /* Bottom Sections (Separated & Left Aligned) */
    .company-trust-section {
        background-color: #ffffff;
        padding: 25px;
        border-left: 4px solid #333333;
        margin-top: 40px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .contact-action-section {
        background-color: #fdf5f5;
        padding: 25px;
        border-left: 4px solid #cc0000;
        margin-top: 20px;
        margin-bottom: 40px;
    }
