
        :root {
            --moto-bg-color: #f4f7f9;
            --moto-card-bg: #ffffff;
            --moto-text-primary: #2d2d2d;
            --moto-text-secondary: #5a5a5a;
        }

        .moto-body {
            background-color: var(--moto-bg-color);
            font-family: 'Inter', sans-serif;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 70vh;
            padding: 70px 140px;
        }

        .moto-container-wrapper {
            background-color: var(--moto-card-bg);
            padding: 40px;
            box-shadow: 0 15px 45px rgba(0,0,0,0.03);
        }

        /* Image Styling */
        .moto-profile-image {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        /* Quote Text Styling */
        .quote-text-moto {
            font-family: 'Playfair Display', serif;
            font-size: 1.95rem;
            line-height: 1.45;
            color: var(--moto-text-primary);
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        /* Author Info Styling */
        .author-name-moto {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--moto-text-primary);
            margin-bottom: 2px;
            text-transform: none;
        }

        .author-role-moto {
            font-weight: 400;
            font-size: 0.85rem;
            color: var(--moto-text-secondary);
            line-height: 1.4;
        }

        /* Responsive Tweaks */
        @media (max-width: 991px) {
            .moto-container-wrapper {
                padding: 40px 20px;
                text-align: left;
            }
            .quote-text-moto {
                font-size: 1.6rem;
                margin-top: 2rem;
            }
        }
   